When I register a ServiceReference I define the topics of the OSGi Events I'm publishing in a Dictionary class, like the context method definition says:
registerService(Class, service, Dictionary)
My Dictionary definition is: dictionary.put(EventConstants.EVENT_TOPIC, topics);
The topics is a String array with a few strings that define very clearly each possible event type I'm publising, like this:
String [] topics = new String[] { "ONE", "TWO" };
I would like to know what bundles are subscribed to a specific property defined in topics at the Dictionary. I mean what bundles are going to handle the publications of "TWO".
Thanks.