Uses of Interface
org.axonframework.eventsourcing.eventstore.EventStore
Packages that use EventStore
Package
Description
Root package for Axon Eventsourcing.
Part of the Axon Eventsourcing module.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
Package for the sourcing handler API.
Part of the Axon Test module.
-
Uses of EventStore in org.axonframework.eventsourcing
Constructors in org.axonframework.eventsourcing with parameters of type EventStoreModifierConstructorDescriptionEventSourcingRepository(Class<ID> idType, Class<E> entityType, EventStore eventStore, EventSourcedEntityFactory<ID, E> entityFactory, CriteriaResolver<ID> criteriaResolver, EntityEvolver<E> entityEvolver) Deprecated.EventSourcingRepository(Class<ID> idType, Class<E> entityType, EventStore eventStore, EventSourcedEntityFactory<ID, E> entityFactory, EntityEvolver<E> entityEvolver, SourcingHandler<ID, E> sourcingHandler) Initialize the repository to load events from the giveneventStoreusing the givenentityEvolverto apply state transitions to the entity based on the events received, and givensourcingHandlerto process the event stream. -
Uses of EventStore in org.axonframework.eventsourcing.configuration
Method parameters in org.axonframework.eventsourcing.configuration with type arguments of type EventStoreModifier and TypeMethodDescriptionEventSourcingConfigurer.registerEventStore(ComponentBuilder<EventStore> eventStoreFactory) Registers the givenEventStorefactory in thisConfigurer. -
Uses of EventStore in org.axonframework.eventsourcing.eventstore
Classes in org.axonframework.eventsourcing.eventstore that implement EventStoreModifier 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 EventStoreModifierConstructorDescriptionInterceptingEventStore(EventStore delegate, List<MessageDispatchInterceptor<? super EventMessage>> interceptors) Constructs aInterceptingEventStore, delegating all operation to the givendelegate. -
Uses of EventStore in org.axonframework.eventsourcing.handler
Constructors in org.axonframework.eventsourcing.handler with parameters of type EventStoreModifierConstructorDescriptionSimpleSourcingHandler(EventStore eventStore, CriteriaResolver<I> criteriaResolver) Creates a newSimpleSourcingHandler.SnapshottingSourcingHandler(EventStore eventStore, CriteriaResolver<I> criteriaResolver, MessageType messageType, SnapshotPolicy snapshotPolicy, Snapshotter<I, E> snapshotter) Creates a newSnapshottingSourcingHandler. -
Uses of EventStore in org.axonframework.test.fixture
Classes in org.axonframework.test.fixture that implement EventStoreModifier and TypeClassDescriptionclassAnEventStoreimplementation recording all the events that arepublished.Constructors in org.axonframework.test.fixture with parameters of type EventStoreModifierConstructorDescriptionRecordingEventStore(EventStore delegate) Creates a newRecordingEventStorethat will record all events published to the givendelegate.
EventSourcingRepository(Class, Class, EventStore, EventSourcedEntityFactory, EntityEvolver, SourcingHandler)