Uses of Record Class
org.axonframework.eventsourcing.snapshot.api.Snapshot
Packages that use Snapshot
Package
Description
Axon Server snapshot store implementation.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
Public API for snapshotting of event-sourced entities.
In-memory snapshot store implementations.
Store-backed snapshotting implementations for event-sourced entities.
-
Uses of Snapshot in io.axoniq.framework.axonserver.connector.snapshot
Methods in io.axoniq.framework.axonserver.connector.snapshot that return types with arguments of type SnapshotModifier and TypeMethodDescriptionCompletableFuture<@Nullable Snapshot> AxonServerSnapshotStore.load(QualifiedName qualifiedName, Object identifier) Methods in io.axoniq.framework.axonserver.connector.snapshot with parameters of type SnapshotModifier and TypeMethodDescriptionAxonServerSnapshotStore.store(QualifiedName qualifiedName, Object identifier, Snapshot snapshot) -
Uses of Snapshot in org.axonframework.eventsourcing.eventstore
Methods in org.axonframework.eventsourcing.eventstore that return SnapshotConstructors in org.axonframework.eventsourcing.eventstore with parameters of type Snapshot -
Uses of Snapshot in org.axonframework.eventsourcing.snapshot.api
Methods in org.axonframework.eventsourcing.snapshot.api that return Snapshot -
Uses of Snapshot in org.axonframework.eventsourcing.snapshot.inmemory
Methods in org.axonframework.eventsourcing.snapshot.inmemory that return types with arguments of type SnapshotModifier and TypeMethodDescriptionCompletableFuture<@Nullable Snapshot> InMemorySnapshotStore.load(QualifiedName qualifiedName, Object identifier) Methods in org.axonframework.eventsourcing.snapshot.inmemory with parameters of type SnapshotModifier and TypeMethodDescriptionInMemorySnapshotStore.store(QualifiedName qualifiedName, Object identifier, Snapshot snapshot) -
Uses of Snapshot in org.axonframework.eventsourcing.snapshot.store
Methods in org.axonframework.eventsourcing.snapshot.store that return types with arguments of type SnapshotModifier and TypeMethodDescriptionCompletableFuture<@Nullable Snapshot> SnapshotStore.load(QualifiedName qualifiedName, Object identifier) Loads the latest snapshot for a given name and identifier.Methods in org.axonframework.eventsourcing.snapshot.store with parameters of type SnapshotModifier and TypeMethodDescriptionSnapshotStore.store(QualifiedName qualifiedName, Object identifier, Snapshot snapshot) Persists a snapshot under the given name and identifier.