Uses of Interface
org.axonframework.eventsourcing.eventstore.EventStorageEngine
Packages that use EventStorageEngine
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.
JDBC Implementation of the EventStore.
JPA Implementation of the EventStore.
-
Uses of EventStorageEngine in org.axonframework.axonserver.connector.event.axon
Methods in org.axonframework.axonserver.connector.event.axon with parameters of type EventStorageEngineModifier and TypeMethodDescriptionAxonServerEventStore.Builder.storageEngine(EventStorageEngine storageEngine) -
Uses of EventStorageEngine in org.axonframework.config
Method parameters in org.axonframework.config with type arguments of type EventStorageEngineModifier and TypeMethodDescriptionConfigurer.configureEmbeddedEventStore(Function<Configuration, EventStorageEngine> storageEngineBuilder) Configures an Embedded Event Store which uses the given Event Storage Engine to store its events.DefaultConfigurer.configureEmbeddedEventStore(Function<Configuration, EventStorageEngine> storageEngineBuilder) -
Uses of EventStorageEngine in org.axonframework.eventsourcing
Classes in org.axonframework.eventsourcing that implement EventStorageEngineModifier and TypeClassDescriptionclassImplementation of EventStorageEngine that delegates to another implementation, while filtering events as they are appended.Constructors in org.axonframework.eventsourcing with parameters of type EventStorageEngineModifierConstructorDescriptionFilteringEventStorageEngine(EventStorageEngine delegate, Predicate<? super EventMessage<?>> filter) Initializes the FilteringEventStorageEngine delegating all event messages matching the givenfilterto the givendelegate. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore
Classes in org.axonframework.eventsourcing.eventstore that implement EventStorageEngineModifier and TypeClassDescriptionclassAbstractEventStorageEngineimplementation that takes care of event serialization and upcasting.classAbstractEventStorageEngineimplementation that fetches events in batches from the backing database.classEventStorageEngine implementation that combines the streams of two event storage engines.Fields in org.axonframework.eventsourcing.eventstore declared as EventStorageEngineModifier and TypeFieldDescriptionprotected EventStorageEngineAbstractEventStore.Builder.storageEngineMethods in org.axonframework.eventsourcing.eventstore that return EventStorageEngineModifier and TypeMethodDescriptionprotected EventStorageEngineAbstractEventStore.storageEngine()Returns theEventStorageEngineused by the event store.Methods in org.axonframework.eventsourcing.eventstore with parameters of type EventStorageEngineModifier and TypeMethodDescriptionAbstractEventStore.Builder.storageEngine(EventStorageEngine storageEngine) Sets theEventStorageEngineused to store and load events.EmbeddedEventStore.Builder.storageEngine(EventStorageEngine storageEngine) Constructors in org.axonframework.eventsourcing.eventstore with parameters of type EventStorageEngineModifierConstructorDescriptionSequenceEventStorageEngine(EventStorageEngine historicStorage, EventStorageEngine activeStorage) -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.inmemory
Classes in org.axonframework.eventsourcing.eventstore.inmemory that implement EventStorageEngineModifier and TypeClassDescriptionclassThread-safe event storage engine that stores events and snapshots in memory. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.jdbc
Classes in org.axonframework.eventsourcing.eventstore.jdbc that implement EventStorageEngineModifier and TypeClassDescriptionclassAnEventStorageEngineimplementation that uses JDBC to store and fetch events. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.jpa
Classes in org.axonframework.eventsourcing.eventstore.jpa that implement EventStorageEngineModifier and TypeClassDescriptionclassEventStorageEngine implementation that uses JPA to store and fetch events. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.legacyjpa
Classes in org.axonframework.eventsourcing.eventstore.legacyjpa that implement EventStorageEngineMethods in org.axonframework.eventsourcing.eventstore.legacyjpa with parameters of type EventStorageEngineModifier and TypeMethodDescriptionEmbeddedEventStore.Builder.storageEngine(EventStorageEngine storageEngine) -
Uses of EventStorageEngine in org.axonframework.springboot.autoconfig
Methods in org.axonframework.springboot.autoconfig that return EventStorageEngineModifier and TypeMethodDescriptionJdbcAutoConfiguration.eventStorageEngine(Serializer defaultSerializer, PersistenceExceptionResolver persistenceExceptionResolver, Serializer eventSerializer, Configuration configuration, ConnectionProvider connectionProvider, TransactionManager transactionManager, EventSchema eventSchema) JpaEventStoreAutoConfiguration.eventStorageEngine(Serializer defaultSerializer, PersistenceExceptionResolver persistenceExceptionResolver, Serializer eventSerializer, Configuration configuration, EntityManagerProvider entityManagerProvider, TransactionManager transactionManager) Methods in org.axonframework.springboot.autoconfig with parameters of type EventStorageEngineModifier and TypeMethodDescriptionAxonAutoConfiguration.eventStore(EventStorageEngine storageEngine, Configuration configuration) -
Uses of EventStorageEngine in org.axonframework.springboot.autoconfig.legacyjpa
Methods in org.axonframework.springboot.autoconfig.legacyjpa that return EventStorageEngineModifier and TypeMethodDescriptionJpaJavaxEventStoreAutoConfiguration.eventStorageEngine(Serializer defaultSerializer, PersistenceExceptionResolver persistenceExceptionResolver, Serializer eventSerializer, Configuration configuration, EntityManagerProvider entityManagerProvider, TransactionManager transactionManager) Deprecated.
JpaEventStorageEnginewhich moved to jakarta.