Interface FrameworkListener

All Superinterfaces:
EventListener

@ConsumerType public interface FrameworkListener extends EventListener
A FrameworkEvent listener. FrameworkListener is a listener interface that may be implemented by a bundle developer. When a FrameworkEvent is fired, it is asynchronously delivered to a FrameworkListener. The Framework delivers FrameworkEvent objects to a FrameworkListener in order and must not concurrently call a FrameworkListener.

A FrameworkListener object is registered with the Framework using the BundleContext.addFrameworkListener(FrameworkListener) method. FrameworkListener objects are called with a FrameworkEvent objects when the Framework starts and when asynchronous errors occur.

Author:
$Id: 97c76c64c6e6595ad445dcc2d8083d52540f73b8 $
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Receives notification of a general FrameworkEvent object.
  • Method Details

    • frameworkEvent

      void frameworkEvent(FrameworkEvent event)
      Receives notification of a general FrameworkEvent object.
      Parameters:
      event - The FrameworkEvent object.