@ConsumerType
public interface EventHook
Bundles registering this service will be called during framework lifecycle (install, start, stop, update, and uninstall bundle) operations.
Modifier and Type | Method and Description |
---|---|
void |
event(BundleEvent event,
java.util.Collection<BundleContext> contexts)
Bundle event hook method.
|
void event(BundleEvent event, java.util.Collection<BundleContext> contexts)
This method must be called by the framework one and only one time for each bundle event generated, this included bundle events which are generated when there are no bundle listeners registered. This method must be called on the same thread that is performing the action which generated the specified event. The specified collection includes bundle contexts with synchronous and asynchronous bundle listeners registered with them.
event
- The bundle event to be deliveredcontexts
- A collection of Bundle Contexts for bundles which have
listeners to which the specified event will be delivered. The
implementation of this method may remove bundle contexts from the
collection to prevent the event from being delivered to the
associated bundles. The collection supports all the optional
Collection
operations except add
and
addAll
. Attempting to add to the collection will result in
an UnsupportedOperationException
. The collection is not
synchronized.Copyright © OSGi Alliance (2000, 2020). All Rights Reserved. Licensed under the OSGi Specification License, Version 2.0