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.axonserver.connector.event.axon
Classes in org.axonframework.axonserver.connector.event.axon that implement EventStoreModifier and TypeClassDescriptionclassAxon EventStore implementation that connects to the AxonIQ AxonServer Server to store and retrieve Events. -
Uses of EventStore in org.axonframework.config
Methods in org.axonframework.config that return EventStoreModifier and TypeMethodDescriptiondefault EventStoreConfiguration.eventStore()Returns the Event Store in this Configuration, if it is defined.Method parameters in org.axonframework.config with type arguments of type EventStoreModifier and TypeMethodDescriptiondefault ConfigurerConfigurer.configureEventStore(Function<Configuration, EventStore> eventStoreBuilder) Configures the given Event Store to use in this configuration. -
Uses of EventStore in org.axonframework.disruptor.commandhandling
Methods in org.axonframework.disruptor.commandhandling with parameters of type EventStoreModifier and TypeMethodDescription<T> Repository<T> CommandHandlerInvoker.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition, ParameterResolverFactory parameterResolverFactory) Create a repository instance for an aggregate created by the givenaggregateFactory.<T> Repository<T> CommandHandlerInvoker.createRepository(EventStore eventStore, RepositoryProvider repositoryProvider, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition, ParameterResolverFactory parameterResolverFactory, HandlerDefinition handlerDefinition) Create a repository instance for an aggregate created by the givenaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory) Creates a repository instance for an Event Sourced aggregate that is created by the giveneventStoreandaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition) Creates a repository instance for an Event Sourced aggregate, source from giveneventStore, that is created by the givenaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition, ParameterResolverFactory parameterResolverFactory) Creates a repository instance for an Event Sourced aggregate, sourced from giveneventStore, that is created by the givenaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition, ParameterResolverFactory parameterResolverFactory, HandlerDefinition handlerDefinition, RepositoryProvider repositoryProvider) Creates a repository instance for an Event Sourced aggregate, sourced from giveneventStore, that is created by the givenaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, SnapshotTriggerDefinition snapshotTriggerDefinition, RepositoryProvider repositoryProvider) Creates a repository instance for an Event Sourced aggregate, source from giveneventStore, that is created by the givenaggregateFactory.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, ParameterResolverFactory parameterResolverFactory) Creates a repository instance for an Event Sourced aggregate that is created by the givenaggregateFactoryand sourced from giveneventStore.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, ParameterResolverFactory parameterResolverFactory, HandlerDefinition handlerDefinition, RepositoryProvider repositoryProvider) Creates a repository instance for an Event Sourced aggregate that is created by the givenaggregateFactoryand sourced from giveneventStore.<T> Repository<T> DisruptorCommandBus.createRepository(EventStore eventStore, AggregateFactory<T> aggregateFactory, RepositoryProvider repositoryProvider) Creates a repository instance for an Event Sourced aggregate that is created by the giveneventStoreandaggregateFactory. -
Uses of EventStore in org.axonframework.eventsourcing
Fields in org.axonframework.eventsourcing declared as EventStoreMethods in org.axonframework.eventsourcing that return EventStoreModifier and TypeMethodDescriptionprotected EventStoreAbstractSnapshotter.getEventStore()Returns the event store this snapshotter uses to load domain events and store snapshot events.Methods in org.axonframework.eventsourcing with parameters of type EventStoreModifier and TypeMethodDescriptionAbstractSnapshotter.Builder.eventStore(EventStore eventStore) Sets theEventStoreinstance which thisAbstractSnapshotterimplementation will store snapshots in.AggregateSnapshotter.Builder.eventStore(EventStore eventStore) EventSourcingRepository.Builder.eventStore(EventStore eventStore) Sets theEventStorethat holds the event stream this repository needs to event source an Aggregate.AggregateCacheEntry.recreateAggregate(AggregateModel<T> model, EventStore eventStore, SnapshotTriggerDefinition snapshotTriggerDefinition) AggregateCacheEntry.recreateAggregate(AggregateModel<T> model, EventStore eventStore, RepositoryProvider repositoryProvider, SnapshotTriggerDefinition snapshotTriggerDefinition) -
Uses of EventStore in org.axonframework.eventsourcing.conflictresolution
Constructors in org.axonframework.eventsourcing.conflictresolution with parameters of type EventStoreModifierConstructorDescriptionDefaultConflictResolver(EventStore eventStore, String aggregateIdentifier, long expectedVersion, long actualVersion) Initializes aDefaultConflictResolverusing the giveneventStoreto load unseen events since givenexpectedVersion. -
Uses of EventStore in org.axonframework.eventsourcing.eventstore
Classes in org.axonframework.eventsourcing.eventstore that implement EventStoreModifier and TypeClassDescriptionclassAbstract implementation of anEventStorethat uses aEventStorageEngineto store and load events.classImplementation of anEventStorethat stores and fetches events using anEventStorageEngine. -
Uses of EventStore in org.axonframework.eventsourcing.eventstore.legacyjpa
Classes in org.axonframework.eventsourcing.eventstore.legacyjpa that implement EventStore -
Uses of EventStore in org.axonframework.spring.eventsourcing
Methods in org.axonframework.spring.eventsourcing with parameters of type EventStoreModifier and TypeMethodDescriptionSpringAggregateSnapshotter.Builder.eventStore(EventStore eventStore) voidSpringAggregateSnapshotterFactoryBean.setEventStore(EventStore eventStore) Sets the Event Store instance to write the snapshots to -
Uses of EventStore in org.axonframework.springboot.autoconfig
Methods in org.axonframework.springboot.autoconfig that return EventStoreModifier and TypeMethodDescriptionAxonServerBusAutoConfiguration.eventStore(AxonServerConfiguration axonServerConfiguration, Configuration configuration, AxonServerConnectionManager axonServerConnectionManager, Serializer snapshotSerializer, Serializer eventSerializer) Methods in org.axonframework.springboot.autoconfig with parameters of type EventStoreModifier and TypeMethodDescriptionAxonAutoConfiguration.aggregateSnapshotter(Configuration configuration, HandlerDefinition handlerDefinition, ParameterResolverFactory parameterResolverFactory, EventStore eventStore, TransactionManager transactionManager, SnapshotterSpanFactory spanFactory) -
Uses of EventStore in org.axonframework.test.aggregate
Methods in org.axonframework.test.aggregate that return EventStoreModifier and TypeMethodDescriptionAggregateTestFixture.getEventStore()FixtureConfiguration.getEventStore()Returns the event store used by this fixture.
EmbeddedEventStorewhich moved to jakarta.