How do you communicate between eclipse declarative services and Views (ContentProviders) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:32:59Z http://stackoverflow.com/feeds/question/282509 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro 5 How do you communicate between eclipse declarative services and Views (ContentProviders) rcreswick 2008-11-11T23:31:07Z 2008-11-12T23:41:46Z <p>Say you have an eclipse plugin with various views, these views should display data from some OSGi bundle that pushes data to the Views. Rather than have every view communicate with the OSGi bundle, I have an intermediate Facade class that acts as a blackboard for the views and manages communications between the views and the other OSGi bundle--well, that's the theory.</p> <p>The problem comes about because the ui bundle (with the Views and the Facade) communicate with the other bundle (call it the DataStore) using Declarative Services. Since the Data Store receives asynchronous data updates from yet another source, it needs to push content to the Facade (and to other bundles, if they are available). OSGi instantiates the Facade to satisfy the requirements of the cardinality on the DataStore's DS configuration, but the views are instantiated by the Plugin's IApplication implementation. Even if the IApplication and the Facade are the same class, I get two separate instances that do not know of eachother. </p> <p>How do I enable communication between these components (the plugin Application, Views, etc. and the OSGi instantiated Facade)?</p> http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro/282519#282519 1 Answer by rcreswick for How do you communicate between eclipse declarative services and Views (ContentProviders) rcreswick 2008-11-11T23:33:25Z 2008-11-11T23:33:25Z <p>One solution is to use a Singleton, and have one, or both, of the Application and Facade register with that Singleton. </p> <p>However, I really don't like the idea of throwing a global variable at this problem. It doesn't seem to make sense -- this must be a common problem, so I'm assuming there is an elegant solution and I just don't know how to search for it.</p> http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro/285844#285844 1 Answer by patrickroumanoff for How do you communicate between eclipse declarative services and Views (ContentProviders) patrickroumanoff 2008-11-12T23:41:46Z 2008-11-12T23:41:46Z <p>you could also use <a href="http://www.springsource.org/osgi" rel="nofollow">Spring DM</a> to wire up your OSGi services and use <a href="http://martinlippert.blogspot.com/2008/10/new-version-of-spring-extension-factory.html" rel="nofollow">Martin Lippert glue plugin</a> to wire up the views with OSGi Services (or Spring beans), the good bit with it is that you don't need to write any code based on the service API or spring API...</p>