Uses of Interface
org.axonframework.messaging.eventhandling.EventBus
Packages that use EventBus
Package
Description
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
Utility classes used to connect Axon Event publishing mechanisms to a Spring Messaging Channel.
Classes related to event handling and dispatching, such as
and the
invalid reference
Event Listeners
Event Bus.-
Uses of EventBus in org.axonframework.eventsourcing.eventstore
Subinterfaces of EventBus in org.axonframework.eventsourcing.eventstoreModifier and TypeInterfaceDescriptioninterfaceInfrastructure component providing the means to start anEventStoreTransactiontoappend eventsandevent sourcemodels from the underlying storage solution.Classes in org.axonframework.eventsourcing.eventstore that implement EventBusModifier and TypeClassDescriptionclassDecorator around theEventStoreintercepting alleventsbefore they areappendedorpublishedwithdispatch interceptors.classAnEventStoreimplementation which uses anEventStorageEngineas its storage solution.Constructors in org.axonframework.eventsourcing.eventstore with parameters of type EventBusModifierConstructorDescriptionStorageEngineBackedEventStore(EventStorageEngine eventStorageEngine, EventBus eventBus, TagResolver tagResolver) Constructs aSimpleEventStoreusing the giveneventStorageEngineto starttransactionsandwith.invalid reference
open event streams -
Uses of EventBus in org.axonframework.extension.spring.messaging
Constructors in org.axonframework.extension.spring.messaging with parameters of type EventBusModifierConstructorDescriptionInboundEventMessageChannelAdapter(EventBus eventBus) Initialize an InboundEventMessageChannelAdapter instance that sends all incoming Event Messages to the giveneventBus. -
Uses of EventBus in org.axonframework.messaging.eventhandling
Classes in org.axonframework.messaging.eventhandling that implement EventBusModifier and TypeClassDescriptionclassAbstract implementation of anEventBusthat delegates all calls to a given delegate.classDecorator around theEventBusinterceptors alleventsbefore they arepublishedwithdispatch interceptors.classSimple implementation of theEventBusthat provides synchronous event publication with optionalProcessingContextintegration for transactional event handling.Fields in org.axonframework.messaging.eventhandling declared as EventBusConstructors in org.axonframework.messaging.eventhandling with parameters of type EventBusModifierConstructorDescriptionDelegatingEventBus(EventBus delegate) Constructs theDelegatingEventBuswith the givendelegateto receive calls.InterceptingEventBus(EventBus delegate, List<MessageDispatchInterceptor<? super EventMessage>> interceptors) Constructs aInterceptingEventBus, delegating all operations to the givendelegate. -
Uses of EventBus in org.axonframework.test.fixture
Classes in org.axonframework.test.fixture that implement EventBusModifier and TypeClassDescriptionclassclassAnEventStoreimplementation recording all the events that arepublished.Constructors in org.axonframework.test.fixture with parameters of type EventBusModifierConstructorDescriptionRecordingEventBus(EventBus delegate) Creates a newRecordingEventBusthat will record all events published to the givendelegate.