Uses of Interface
org.apache.camel.spi.EventNotifier

Packages that use EventNotifier
org.apache.camel.management Camel management 
org.apache.camel.management.mbean Camel management JMX Mbeans 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of EventNotifier in org.apache.camel.management
 

Classes in org.apache.camel.management that implement EventNotifier
 class EventNotifierSupport
          Base class to extend for custom EventNotifier implementations.
 class JmxNotificationEventNotifier
          A JMX based EventNotifier which broadcasts JMX Notifications.
 class LoggingEventNotifier
          Logging event notifier that only notifies if INFO log level has been configured for its logger.
 class PublishEventNotifier
          A EventNotifier which publishes the EventObject to some Endpoint.
 

Methods in org.apache.camel.management that return types with arguments of type EventNotifier
 List<EventNotifier> DefaultManagementStrategy.getEventNotifiers()
           
 

Methods in org.apache.camel.management with parameters of type EventNotifier
 void DefaultManagementStrategy.addEventNotifier(EventNotifier eventNotifier)
           
 ObjectName DefaultManagementNamingStrategy.getObjectNameForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 

Method parameters in org.apache.camel.management with type arguments of type EventNotifier
 void DefaultManagementStrategy.setEventNotifiers(List<EventNotifier> eventNotifiers)
           
 

Uses of EventNotifier in org.apache.camel.management.mbean
 

Methods in org.apache.camel.management.mbean that return EventNotifier
 EventNotifier ManagedEventNotifier.getEventNotifier()
           
 

Constructors in org.apache.camel.management.mbean with parameters of type EventNotifier
ManagedEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 

Uses of EventNotifier in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return types with arguments of type EventNotifier
 List<EventNotifier> ManagementStrategy.getEventNotifiers()
          Gets the event notifiers.
 

Methods in org.apache.camel.spi with parameters of type EventNotifier
 void ManagementStrategy.addEventNotifier(EventNotifier eventNotifier)
          Adds the event notifier to use.
 ObjectName ManagementNamingStrategy.getObjectNameForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 

Method parameters in org.apache.camel.spi with type arguments of type EventNotifier
 void ManagementStrategy.setEventNotifiers(List<EventNotifier> eventNotifier)
          Sets the list of event notifier to use.
 



Apache CAMEL