Uses of Interface
org.axonframework.eventhandling.EventListener

Packages that use EventListener
org.axonframework.eventhandling Classes related to event handling and dispatching, such as Event Listeners and the Event Bus
org.axonframework.eventhandling.annotation Classes in support of the configuration of Event Handlers using annotations. 
org.axonframework.saga   
org.axonframework.saga.annotation   
 

Uses of EventListener in org.axonframework.eventhandling
 

Subinterfaces of EventListener in org.axonframework.eventhandling
 interface EventListenerProxy
          Specialist interface for implementations of an event listener that redirect actual processing to another instance.
 

Classes in org.axonframework.eventhandling that implement EventListener
 class AsynchronousEventHandlerWrapper
          The AsynchronousEventHandlerWrapper can wrap any event listener to give it asynchronous behavior.
 

Methods in org.axonframework.eventhandling with parameters of type EventListener
 void SimpleEventBus.subscribe(EventListener eventListener)
          Subscribe the given eventListener to this bus.
 void EventBus.subscribe(EventListener eventListener)
          Subscribe the given eventListener to this bus.
 void SimpleEventBus.unsubscribe(EventListener eventListener)
          Unsubscribe the given eventListener to this bus.
 void EventBus.unsubscribe(EventListener eventListener)
          Unsubscribe the given eventListener to this bus.
 

Constructors in org.axonframework.eventhandling with parameters of type EventListener
AsynchronousEventHandlerWrapper(EventListener eventListener, EventSequencingPolicy eventSequencingPolicy, Executor executor)
          Initialize the AsynchronousEventHandlerWrapper for the given eventListener using the given executor.
AsynchronousEventHandlerWrapper(EventListener eventListener, TransactionManager transactionManager, EventSequencingPolicy eventSequencingPolicy, Executor executor)
          Initialize the AsynchronousEventHandlerWrapper for the given eventListener using the given executor and transactionManager.
EventProcessingScheduler(EventListener eventListener, TransactionManager transactionManager, Executor executor, org.axonframework.eventhandling.EventProcessingScheduler.ShutdownCallback shutDownCallback)
          Initialize a scheduler for the given eventListener using the given executor.
EventProcessingScheduler(EventListener eventListener, TransactionManager transactionManager, Executor executor, Queue<Event> eventQueue, org.axonframework.eventhandling.EventProcessingScheduler.ShutdownCallback shutDownCallback)
          Initialize a scheduler for the given eventListener using the given executor.
 

Uses of EventListener in org.axonframework.eventhandling.annotation
 

Classes in org.axonframework.eventhandling.annotation that implement EventListener
 class AnnotationEventListenerAdapter
          Adapter that turns any bean with EventHandler annotated methods into an EventListener.
 

Uses of EventListener in org.axonframework.saga
 

Subinterfaces of EventListener in org.axonframework.saga
 interface SagaManager
          Interface toward the Manager of one or more types of Saga.
 

Classes in org.axonframework.saga that implement EventListener
 class AbstractSagaManager
           
 class SimpleSagaManager
          Simple SagaManager implementation.
 

Uses of EventListener in org.axonframework.saga.annotation
 

Classes in org.axonframework.saga.annotation that implement EventListener
 class AnnotatedSagaManager
          Implementation of the SagaManager that uses annotations on the Sagas to describe the lifecycle management.
 



Copyright © 2011. All Rights Reserved.