Return-Path: Delivered-To: apmail-felix-dev-archive@www.apache.org Received: (qmail 80007 invoked from network); 21 Jun 2010 08:24:52 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 21 Jun 2010 08:24:52 -0000 Received: (qmail 48786 invoked by uid 500); 21 Jun 2010 08:24:51 -0000 Delivered-To: apmail-felix-dev-archive@felix.apache.org Received: (qmail 48441 invoked by uid 500); 21 Jun 2010 08:24:49 -0000 Mailing-List: contact dev-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list dev@felix.apache.org Received: (qmail 48432 invoked by uid 99); 21 Jun 2010 08:24:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jun 2010 08:24:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jun 2010 08:24:45 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o5L8ONPA024106 for ; Mon, 21 Jun 2010 08:24:23 GMT Message-ID: <31430633.106461277108663683.JavaMail.jira@thor> Date: Mon, 21 Jun 2010 04:24:23 -0400 (EDT) From: "Brian Tribondeau (JIRA)" To: dev@felix.apache.org Subject: [jira] Commented: (FELIX-2296) iPojo : Unable to get a ServiceProperty change in an anonymous class In-Reply-To: <29029252.116151271861749512.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/FELIX-2296?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12880745#action_12880745 ] Brian Tribondeau commented on FELIX-2296: ----------------------------------------- The problem didn't occur with 1.6.2 release of iPojo... Solved but I am still puzzled This ticket it is not relevant anymore so I close it. Thanks Clement for your support ! > iPojo : Unable to get a ServiceProperty change in an anonymous class > -------------------------------------------------------------------- > > Key: FELIX-2296 > URL: https://issues.apache.org/jira/browse/FELIX-2296 > Project: Felix > Issue Type: Bug > Components: iPOJO > Affects Versions: iPOJO-1.4.0, iPOJO-1.6.0 > Reporter: Brian Tribondeau > Assignee: Clement Escoffier > Priority: Critical > Fix For: iPOJO-1.8.0 > > > @ServiceProperty(value = "false") > private boolean ready; > ... > SwingUtilities.invokeLater(new Runnable() { > public void run() { > ready = true; > }}); > is not equivalent to : > SwingUtilities.invokeLater(new Runnable() { > public void run() { > connect(); > }}); > public void connect() { > ready = true; > } > (I use a @Require(filter = "(ready=true)) to start an another service instance) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.