You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Brian Tribondeau (JIRA)" <ji...@apache.org> on 2010/04/26 11:28:31 UTC

[jira] Commented: (FELIX-2296) iPojo : Unable to get a ServiceProperty change in an anonymous class

    [ https://issues.apache.org/jira/browse/FELIX-2296?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860876#action_12860876 ] 

Brian Tribondeau commented on FELIX-2296:
-----------------------------------------

D'ailleurs merci pour iPojo !

 Je n'aurais probablement jamais utilisé OSGi dans mon projet pro si j'avais du vendre l'usage brut d'OSGi. Et désormais on a plus qu'une seule application capable de charger toutes les briques fonctionnelles de notre domaine. Un gain de temps et de maintenance énorme.

Bonne continuation.

> 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.