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.eventhandling.replay   
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.
 

Methods in org.axonframework.eventhandling that return types with arguments of type EventListener
 Set<EventListener> Cluster.getMembers()
          Returns a read-only view on the members in the cluster.
 Set<EventListener> AbstractCluster.getMembers()
          Returns a read-only view on the members in the cluster.
 

Methods in org.axonframework.eventhandling with parameters of type EventListener
 Cluster ClassNamePatternClusterSelector.doSelectCluster(EventListener eventListener, Class listenerType)
           
 Cluster ClassNamePrefixClusterSelector.doSelectCluster(EventListener eventListener, Class<?> listenerType)
           
protected  Cluster AnnotationClusterSelector.doSelectCluster(EventListener eventListener, Class<?> listenerType)
           
protected abstract  Cluster AbstractClusterSelector.doSelectCluster(EventListener eventListener, Class<?> listenerType)
          Select a cluster for the given eventListener, which has the actual class listenerType.
 Cluster DefaultClusterSelector.selectCluster(EventListener eventListener)
          Selects the cluster instance that the given eventListener should be member of.
 Cluster CompositeClusterSelector.selectCluster(EventListener eventListener)
           
 Cluster ClusterSelector.selectCluster(EventListener eventListener)
          Selects the cluster instance that the given eventListener should be member of.
 Cluster AutowiringClusterSelector.selectCluster(EventListener eventListener)
           
 Cluster AbstractClusterSelector.selectCluster(EventListener 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 ClusteringEventBus.subscribe(EventListener eventListener)
           
 void Cluster.subscribe(EventListener eventListener)
          Subscribe the given eventListener to this cluster.
 void AbstractCluster.subscribe(EventListener eventListener)
           
 void SimpleEventBus.unsubscribe(EventListener eventListener)
          Unsubscribe the given eventListener to this bus.
 void EventBus.unsubscribe(EventListener eventListener)
          Unsubscribe the given eventListener to this bus.
 void ClusteringEventBus.unsubscribe(EventListener eventListener)
           
 void Cluster.unsubscribe(EventListener eventListener)
          Unsubscribes the given eventListener from this cluster.
 void AbstractCluster.unsubscribe(EventListener eventListener)
           
 

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.eventhandling.replay
 

Methods in org.axonframework.eventhandling.replay that return types with arguments of type EventListener
 Set<EventListener> ReplayingCluster.getMembers()
           
 

Methods in org.axonframework.eventhandling.replay with parameters of type EventListener
 void ReplayingCluster.subscribe(EventListener eventListener)
          Subscribe the given eventListener to this cluster.
 void ReplayingCluster.unsubscribe(EventListener eventListener)
          Unsubscribes the given eventListener from this cluster.
 

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
          Abstract implementation of the SagaManager interface that provides basic functionality required by most SagaManager implementations.
 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.
 class AsyncAnnotatedSagaManager
          A SagaManager implementation that processes Sagas asynchronously.
 



Copyright © 2010-2012. All Rights Reserved.