Interface SynchronousBundleListener
-
- All Superinterfaces:
BundleListener,java.util.EventListener
public interface SynchronousBundleListener extends BundleListener
A synchronousBundleEventlistener.SynchronousBundleListeneris a listener interface that may be implemented by a bundle developer. When aBundleEventis fired, it is synchronously delivered to aSynchronousBundleListener. The Framework may deliverBundleEventobjects to aSynchronousBundleListenerout of order and may concurrently call and/or reenter aSynchronousBundleListener.A
SynchronousBundleListenerobject is registered with the Framework using theBundleContext.addBundleListener(org.osgi.framework.BundleListener)method.SynchronousBundleListenerobjects are called with aBundleEventobject when a bundle has been installed, resolved, starting, started, stopping, stopped, updated, unresolved, or uninstalled.Unlike normal
BundleListenerobjects,SynchronousBundleListeners are synchronously called during bundle lifecycle processing. The bundle lifecycle processing will not proceed until allSynchronousBundleListeners have completed.SynchronousBundleListenerobjects will be called prior toBundleListenerobjects.AdminPermission[bundle,LISTENER]is required to add or remove aSynchronousBundleListenerobject.- Since:
- 1.1
- Version:
- $Revision: 5673 $
- See Also:
BundleEvent
-
-
Method Summary
-
Methods inherited from interface org.osgi.framework.BundleListener
bundleChanged
-
-