Uses of Interface
org.axonframework.eventsourcing.eventstore.EventStore
Packages that use EventStore
Package
Description
Classes related to event sourcing.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
-
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) Initialize the repository to load events from the giveneventStoreusing the givenapplierto apply state transitions to the entity based on the events received, and givencriteriaResolverto resolve theEventCriteriaof the given identifier type used to source an entity. -
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.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.