Uses of Interface
org.axonframework.eventsourcing.eventstore.EventStorageEngine
Packages that use EventStorageEngine
Package
Description
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
JPA Implementation of the EventStore.
-
Uses of EventStorageEngine in org.axonframework.axonserver.connector.event
Classes in org.axonframework.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 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
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.StorageEngineBackedEventStore(EventStorageEngine eventStorageEngine, EventBus eventBus, TagResolver tagResolver) Constructs aSimpleEventStoreusing the giveneventStorageEngineto starttransactionsandwith.invalid reference
open event streams -
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.