Uses of Record Class
org.axonframework.eventsourcing.snapshot.api.Snapshot
Packages that use Snapshot
Package
Description
Axon Server snapshot store implementation.
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 org.axonframework.axonserver.connector.snapshot
Methods in org.axonframework.axonserver.connector.snapshot that return types with arguments of type SnapshotModifier and TypeMethodDescriptionCompletableFuture<@Nullable Snapshot> AxonServerSnapshotStore.load(QualifiedName qualifiedName, Object identifier) Methods in org.axonframework.axonserver.connector.snapshot with parameters of type SnapshotModifier and TypeMethodDescriptionAxonServerSnapshotStore.store(QualifiedName qualifiedName, Object identifier, Snapshot snapshot) -
Uses of Snapshot in org.axonframework.eventsourcing.snapshot.api
Methods in org.axonframework.eventsourcing.snapshot.api that return SnapshotModifier and TypeMethodDescriptionCreates a copy of this snapshot with the given payload.Methods in org.axonframework.eventsourcing.snapshot.api that return types with arguments of type SnapshotModifier and TypeMethodDescriptionAsynchronously retrieves the snapshot for the givenidentifier, if one exists. -
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.