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
Reporter: Brian Tribondeau
Priority: Critical
@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.