Uses of Interface
org.axonframework.eventsourcing.snapshot.store.SnapshotStore
Packages that use SnapshotStore
Package
Description
Axon Server snapshot store implementation.
Part of the Axoniq Framework multi-tenancy module.
Package containing multitenancy support for event sourcing components.
Postgres extension main package.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
Package for the sourcing handler API.
In-memory snapshot store implementations.
Snapshot-store tracing decorators for
axon-eventsourcing.-
Uses of SnapshotStore in io.axoniq.framework.axonserver.connector.snapshot
Classes in io.axoniq.framework.axonserver.connector.snapshot that implement SnapshotStore -
Uses of SnapshotStore in io.axoniq.framework.messaging.multitenancy.axonserver.eventsourcing
Methods in io.axoniq.framework.messaging.multitenancy.axonserver.eventsourcing that return SnapshotStoreModifier and TypeMethodDescriptionAxonServerTenantSnapshotStoreFactory.storeFor(TenantDescriptor tenant) -
Uses of SnapshotStore in io.axoniq.framework.messaging.multitenancy.eventsourcing
Classes in io.axoniq.framework.messaging.multitenancy.eventsourcing that implement SnapshotStoreMethods in io.axoniq.framework.messaging.multitenancy.eventsourcing that return SnapshotStoreModifier and TypeMethodDescriptionTenantSnapshotStoreFactory.storeFor(TenantDescriptor tenant) Returns theSnapshotStoreof the giventenant. -
Uses of SnapshotStore in io.axoniq.framework.postgresql
Classes in io.axoniq.framework.postgresql that implement SnapshotStoreModifier and TypeClassDescriptionfinal classAEventStorageEngineandSnapshotStoreimplementation backed by PostgreSQL, providing reliable event persistence and streaming with support for tagging. -
Uses of SnapshotStore in org.axonframework.eventsourcing.eventstore
Methods in org.axonframework.eventsourcing.eventstore with parameters of type SnapshotStoreModifier and TypeMethodDescriptionstatic EventStorageEngineSnapshotCapableEventStorageEngine.decorate(EventStorageEngine engine, SnapshotStore snapshotStore) Returns anEventStorageEnginethat supports theSourcingStrategy.Snapshotsourcing strategy, given theengineto source events from and thesnapshotStoreholding its snapshots.Constructors in org.axonframework.eventsourcing.eventstore with parameters of type SnapshotStoreModifierConstructorDescriptionSnapshotCapableEventStorageEngine(EventStorageEngine delegate, SnapshotStore snapshotStore) Constructs aSnapshotCapableEventStorageEnginewrapping the givendelegateengine with snapshot loading capability backed by the givensnapshotStore. -
Uses of SnapshotStore in org.axonframework.eventsourcing.handler
Constructors in org.axonframework.eventsourcing.handler with parameters of type SnapshotStoreModifierConstructorDescriptionSnapshottingEntityLifecycleHandler(EventStore eventStore, CriteriaResolver<I> criteriaResolver, TagResolver tagResolver, InitializingEntityEvolver<I, E> evolver, SnapshotPolicy snapshotPolicy, MessageType messageType, Converter converter, Class<?> entityType, SnapshotStore snapshotStore) Constructs a new instance. -
Uses of SnapshotStore in org.axonframework.eventsourcing.snapshot.inmemory
Classes in org.axonframework.eventsourcing.snapshot.inmemory that implement SnapshotStoreModifier and TypeClassDescriptionclassAn in-memory implementation ofSnapshotStorefor testing or lightweight scenarios. -
Uses of SnapshotStore in org.axonframework.eventsourcing.snapshot.store.tracing
Classes in org.axonframework.eventsourcing.snapshot.store.tracing that implement SnapshotStoreModifier and TypeClassDescriptionfinal classDelegatingSnapshotStoredecorator that opens internal tracing spans around the snapshot store / load operations.Constructors in org.axonframework.eventsourcing.snapshot.store.tracing with parameters of type SnapshotStoreModifierConstructorDescriptionTracingSnapshotStore(SnapshotStore delegate, SpanFactory spanFactory) Initializes a tracingSnapshotStorewrapping the givendelegate, obtaining spans from the givenspanFactory.