Uses of Interface
org.axonframework.eventhandling.EventBus

Packages that use EventBus
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.scheduling.java   
org.axonframework.eventhandling.scheduling.quartz   
org.axonframework.repository Classes related to the repository interface and implementations. 
org.axonframework.saga   
org.axonframework.saga.annotation   
org.axonframework.unitofwork Classes in support of the UnitOfWork pattern in Axon Framework. 
 

Uses of EventBus in org.axonframework.eventhandling
 

Classes in org.axonframework.eventhandling that implement EventBus
 class SimpleEventBus
          Implementation of the EventBus that directly forwards all published events (in the callers' thread) to all subscribed listeners.
 

Uses of EventBus in org.axonframework.eventhandling.annotation
 

Methods in org.axonframework.eventhandling.annotation with parameters of type EventBus
 void AnnotationEventListenerBeanPostProcessor.setEventBus(EventBus eventBus)
          Sets the event bus to which detected event listeners should be subscribed.
 

Constructors in org.axonframework.eventhandling.annotation with parameters of type EventBus
AnnotationEventListenerAdapter(Object annotatedEventListener, EventBus eventBus)
          Initialize the AnnotationEventListenerAdapter for the given annotatedEventListener.
AnnotationEventListenerAdapter(Object annotatedEventListener, Executor executor, EventBus eventBus)
          Initialize the AnnotationEventListenerAdapter for the given annotatedEventListener.
 

Uses of EventBus in org.axonframework.eventhandling.scheduling.java
 

Constructors in org.axonframework.eventhandling.scheduling.java with parameters of type EventBus
SimpleEventScheduler(ScheduledExecutorService executorService, EventBus eventBus)
          Initialize the SimpleEventScheduler using the given executorService as trigger and execution mechanism, and publishes events to the given eventBus.
 

Uses of EventBus in org.axonframework.eventhandling.scheduling.quartz
 

Methods in org.axonframework.eventhandling.scheduling.quartz with parameters of type EventBus
 void QuartzEventScheduler.setEventBus(EventBus eventBus)
          Sets the event bus to which scheduled events need to be published.
 

Uses of EventBus in org.axonframework.repository
 

Methods in org.axonframework.repository with parameters of type EventBus
 void AbstractRepository.setEventBus(EventBus eventBus)
          Sets the event bus to which newly stored events should be published.
 

Uses of EventBus in org.axonframework.saga
 

Methods in org.axonframework.saga that return EventBus
protected  EventBus AbstractSagaManager.getEventBus()
          Returns the EventBus that delivers the events to route to Sagas.
 

Constructors in org.axonframework.saga with parameters of type EventBus
AbstractSagaManager(EventBus eventBus, SagaRepository sagaRepository, SagaFactory sagaFactory)
          Initializes the SagaManager with the given eventBus and sagaRepository.
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver, EventBus eventBus)
          Initialize a SimpleSagaManager backed by the given resources, using a GenericSagaFactory.
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver, SagaFactory sagaFactory, EventBus eventBus)
          Initialize a SimpleSagaManager backed by the given resources.
 

Uses of EventBus in org.axonframework.saga.annotation
 

Constructors in org.axonframework.saga.annotation with parameters of type EventBus
AnnotatedSagaManager(SagaRepository sagaRepository, EventBus eventBus, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using the given resources, and using a GenericSagaFactory.
AnnotatedSagaManager(SagaRepository sagaRepository, SagaFactory sagaFactory, EventBus eventBus, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using the given resources, and using a GenericSagaFactory.
 

Uses of EventBus in org.axonframework.unitofwork
 

Methods in org.axonframework.unitofwork with parameters of type EventBus
 void UnitOfWork.publishEvent(Event event, EventBus eventBus)
          Request to publish the given event on the given eventBus.
 void DefaultUnitOfWork.publishEvent(Event event, EventBus eventBus)
           
 



Copyright © 2011. All Rights Reserved.