Uses of Interface
org.axonframework.eventsourcing.eventstore.EventStorageEngine
Packages that use EventStorageEngine
Package
Description
Part of the Axon Server Connector module.
Postgres extension main package.
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.
Part of the Axon Eventsourcing module.
Part of the Axon Eventsourcing module.
-
Uses of EventStorageEngine in io.axoniq.framework.axonserver.connector.event
Classes in io.axoniq.framework.axonserver.connector.event that implement EventStorageEngineModifier and TypeClassDescriptionclassEvent Storage Engine implementation that uses the aggregate-oriented APIs of Axon Server, allowing it to interact with versions that do not have DCB support.classAnEventStorageEngineimplementation using Axon Server through theaxonserver-connector-javaproject. -
Uses of EventStorageEngine in io.axoniq.framework.postgresql
Classes in io.axoniq.framework.postgresql that implement EventStorageEngineModifier and TypeClassDescriptionfinal classAEventStorageEngineimplementation backed by PostgreSQL, providing reliable event persistence and streaming with support for tagging. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.configuration
Method parameters in org.axonframework.eventsourcing.configuration with type arguments of type EventStorageEngineModifier and TypeMethodDescriptionEventSourcingConfigurer.registerEventStorageEngine(ComponentBuilder<EventStorageEngine> eventStorageEngineFactory) Registers the givenEventStorageEnginefactory in thisConfigurer. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore
Classes in org.axonframework.eventsourcing.eventstore that implement EventStorageEngineModifier and TypeClassDescriptionclassDecorator for anEventStorageEnginethat adds support for theSourcingStrategy.Snapshotsourcing strategy for stores that do not support this strategy natively.Constructors in org.axonframework.eventsourcing.eventstore with parameters of type EventStorageEngineModifierConstructorDescriptionDefaultEventStoreTransaction(EventStorageEngine eventStorageEngine, ProcessingContext processingContext, Function<EventMessage, TaggedEventMessage<?>> eventTagger) Constructs aDefaultEventStoreTransactionusing the giveneventStorageEnginetoappend eventsoriginating from the givencontext.SnapshotCapableEventStorageEngine(EventStorageEngine delegate, SnapshotStore snapshotStore) Constructs aSnapshotCapableEventStorageEnginewrapping the givendelegateengine with snapshot loading capability backed by the givensnapshotStore.StorageEngineBackedEventStore(EventStorageEngine eventStorageEngine, EventBus eventBus, TagResolver tagResolver) Constructs aSimpleEventStoreusing the giveneventStorageEngineto starttransactionsandopen event streamswith. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.inmemory
Classes in org.axonframework.eventsourcing.eventstore.inmemory that implement EventStorageEngineModifier and TypeClassDescriptionclassThread-safeEventStorageEngineimplementation storing events in memory. -
Uses of EventStorageEngine in org.axonframework.eventsourcing.eventstore.jpa
Classes in org.axonframework.eventsourcing.eventstore.jpa that implement EventStorageEngineModifier and TypeClassDescriptionclassAnEventStorageEngineimplementation that uses JPA to store and fetch events from an aggregate-based event storage solution.