Package org.axonframework.eventhandling

Classes related to event handling and dispatching, such as Event Listeners and the Event Bus.

See:
          Description

Interface Summary
EventBus Specification of the mechanism on which the Event Listeners can subscribe for events and event publishers can publish their events.
EventListener Interface to be implemented by classes that can handle events.
EventListenerProxy Specialist interface for implementations of an event listener that redirect actual processing to another instance.
EventSequencingPolicy Interface to a policy definition for concurrent event handling.
SimpleEventBusStatisticsMXBean Management interface the SimpleEventBus monitor.
TransactionManager org.axonframework.eventhandling.EventListener} interface that provides implementations the ability to do work at the start and end of a transaction.
 

Class Summary
AsynchronousEventHandlerWrapper The AsynchronousEventHandlerWrapper can wrap any event listener to give it asynchronous behavior.
EventProcessingScheduler The EventProcessingScheduler is responsible for scheduling all events within the same SequencingIdentifier in an Executor.
FullConcurrencyPolicy EventSequencingPolicy that does not enforce any sequencing requirements on event processing.
SequentialPerAggregatePolicy Concurrency policy that requires sequential processing of events raised by the same aggregate.
SequentialPolicy EventSequencingPolicy that requires serialized handling of all events delivered to an event handler.
SimpleEventBus Implementation of the EventBus that directly forwards all published events (in the callers' thread) to all subscribed listeners.
TransactionStatus Provides details about the current status of an event handling transaction.
 

Enum Summary
RetryPolicy This policy tells the EventProcessingScheduler how it should deal with failed transactions.
YieldPolicy The yielding policy for transactions.
 

Exception Summary
UnsupportedHandlerMethodException Thrown when an EventHandler annotated method was found that does not conform to the rules that apply to those methods.
 

Package org.axonframework.eventhandling Description

Classes related to event handling and dispatching, such as Event Listeners and the Event Bus.



Copyright © 2011. All Rights Reserved.