-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Cannot Reproduce
-
Affects Version/s: iPOJO-1.4.0, iPOJO-1.6.0
-
Fix Version/s: iPOJO-1.6.0
-
Component/s: iPOJO
-
Labels:None
@ServiceProperty(value = "false")
private boolean ready;
...
SwingUtilities.invokeLater(new Runnable() {
public void run()
);
is not equivalent to :
SwingUtilities.invokeLater(new Runnable() {
public void run()
);
public void connect() {
ready = true;
}
(I use a @Require(filter = "(ready=true)) to start an another service instance)