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. 
org.apache.camel.support Base classes that help to implement the camel API and are expected to be extended by the user 
 

Uses of EventNotifier in org.apache.camel.management
 

Classes in org.apache.camel.management that implement EventNotifier
 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)
           
 Object DefaultManagementObjectStrategy.getManagedObjectForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 ObjectName DefaultManagementNamingStrategy.getObjectNameForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 boolean DefaultManagementStrategy.removeEventNotifier(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.
 Object ManagementObjectStrategy.getManagedObjectForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 ObjectName ManagementNamingStrategy.getObjectNameForEventNotifier(CamelContext context, EventNotifier eventNotifier)
           
 boolean ManagementStrategy.removeEventNotifier(EventNotifier eventNotifier)
          Removes the event notifier
 

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.
 

Uses of EventNotifier in org.apache.camel.support
 

Classes in org.apache.camel.support that implement EventNotifier
 class EventNotifierSupport
          Base class to extend for custom EventNotifier implementations.
 



Apache Camel