Package org.osgi.framework.hooks.service
Interface EventHook
-
@ConsumerType public interface EventHook
Deprecated.As of 1.1. Replaced byEventListenerHook
.OSGi Framework Service Event Hook Service.Bundles registering this service will be called during framework service (register, modify, and unregister service) operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
event(ServiceEvent event, Collection<BundleContext> contexts)
Deprecated.Event hook method.
-
-
-
Method Detail
-
event
void event(ServiceEvent event, Collection<BundleContext> contexts)
Deprecated.Event hook method. This method is called prior to service event delivery when a publishing bundle registers, modifies or unregisters a service. This method can filter the bundles which receive the event.- Parameters:
event
- The service event to be delivered.contexts
- 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 optionalCollection
operations exceptadd
andaddAll
. Attempting to add to the collection will result in anUnsupportedOperationException
. The collection is not synchronized.
-
-