Class SnapshotStore
- All Implemented Interfaces:
Actor,ActorLogging,SnapshotStore
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.pekko.actor.Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$ -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncontext()Scala API: Stores the context for this actor, including self, and sender.final scala.concurrent.Future<scala.runtime.BoxedUnit>deleteAsync(String persistenceId, SnapshotSelectionCriteria criteria) Plugin API: deletes all snapshots matchingcriteria.final scala.concurrent.Future<scala.runtime.BoxedUnit>deleteAsync(SnapshotMetadata metadata) Plugin API: deletes the snapshot identified bymetadata.doDeleteAsync(String persistenceId, SnapshotSelectionCriteria criteria) Java API, Plugin API: deletes all snapshots matching `criteria`.doDeleteAsync(SnapshotMetadata metadata) Java API, Plugin API: deletes the snapshot identified by `metadata`.doLoadAsync(String persistenceId, SnapshotSelectionCriteria criteria) Java API, Plugin API: asynchronously loads a snapshot.doSaveAsync(SnapshotMetadata metadata, Object snapshot) Java API, Plugin API: asynchronously saves a snapshot.final scala.concurrent.Future<scala.Option<SelectedSnapshot>>loadAsync(String persistenceId, SnapshotSelectionCriteria criteria) Plugin API: asynchronously loads a snapshot.protected voidScala API: Stores the context for this actor, including self, and sender.protected final voidThe 'self' field holds the ActorRef for this actor.protected final voidorg$apache$pekko$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq(scala.PartialFunction<Object, scala.runtime.BoxedUnit> x$1) final scala.PartialFunction<Object,scala.runtime.BoxedUnit> final scala.concurrent.Future<scala.runtime.BoxedUnit>saveAsync(SnapshotMetadata metadata, Object snapshot) Plugin API: asynchronously saves a snapshot.final ActorRefself()The 'self' field holds the ActorRef for this actor.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.pekko.actor.Actor
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, postStop, preRestart, preStart, sender, supervisorStrategy, unhandledMethods inherited from interface org.apache.pekko.actor.ActorLogging
_log_$eq, logMethods inherited from interface org.apache.pekko.persistence.snapshot.SnapshotStore
receive, receivePluginInternal, senderPersistentActor, tryReceivePluginInternal
-
Constructor Details
-
SnapshotStore
public SnapshotStore()
-
-
Method Details
-
context
Description copied from interface:ActorScala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such asforward.WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
pekko.actor.ActorContextis the Scala API.getContextreturns apekko.actor.AbstractActor.ActorContext, which is the Java API of the actor context. -
deleteAsync
public final scala.concurrent.Future<scala.runtime.BoxedUnit> deleteAsync(SnapshotMetadata metadata) Description copied from interface:SnapshotStorePlugin API: deletes the snapshot identified bymetadata.This call is protected with a circuit-breaker.
- Specified by:
deleteAsyncin interfaceSnapshotStore- Parameters:
metadata- snapshot metadata.
-
deleteAsync
public final scala.concurrent.Future<scala.runtime.BoxedUnit> deleteAsync(String persistenceId, SnapshotSelectionCriteria criteria) Description copied from interface:SnapshotStorePlugin API: deletes all snapshots matchingcriteria.This call is protected with a circuit-breaker.
- Specified by:
deleteAsyncin interfaceSnapshotStore- Parameters:
persistenceId- id of the persistent actor.criteria- selection criteria for deleting.
-
loadAsync
public final scala.concurrent.Future<scala.Option<SelectedSnapshot>> loadAsync(String persistenceId, SnapshotSelectionCriteria criteria) Description copied from interface:SnapshotStorePlugin API: asynchronously loads a snapshot.If the future
OptionisNonethen all events will be replayed, i.e. there was no snapshot. If snapshot could not be loaded theFutureshould be completed with failure. That is important because events may have been deleted and just replaying the events might not result in a valid state.This call is protected with a circuit-breaker.
- Specified by:
loadAsyncin interfaceSnapshotStore- Parameters:
persistenceId- id of the persistent actor.criteria- selection criteria for loading.
-
org$apache$pekko$actor$Actor$_setter_$context_$eq
Description copied from interface:ActorScala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such asforward.WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
pekko.actor.ActorContextis the Scala API.getContextreturns apekko.actor.AbstractActor.ActorContext, which is the Java API of the actor context.- Specified by:
org$apache$pekko$actor$Actor$_setter_$context_$eqin interfaceActor
-
org$apache$pekko$actor$Actor$_setter_$self_$eq
Description copied from interface:ActorThe 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
- Specified by:
org$apache$pekko$actor$Actor$_setter_$self_$eqin interfaceActor
-
org$apache$pekko$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq
protected final void org$apache$pekko$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq(scala.PartialFunction<Object, scala.runtime.BoxedUnit> x$1) - Specified by:
org$apache$pekko$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eqin interfaceSnapshotStore
-
receiveSnapshotStore
- Specified by:
receiveSnapshotStorein interfaceSnapshotStore
-
saveAsync
public final scala.concurrent.Future<scala.runtime.BoxedUnit> saveAsync(SnapshotMetadata metadata, Object snapshot) Description copied from interface:SnapshotStorePlugin API: asynchronously saves a snapshot.This call is protected with a circuit-breaker.
- Specified by:
saveAsyncin interfaceSnapshotStore- Parameters:
metadata- snapshot metadata.snapshot- snapshot.
-
self
Description copied from interface:ActorThe 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
-
doLoadAsync
CompletionStage<Optional<SelectedSnapshot>> doLoadAsync(String persistenceId, SnapshotSelectionCriteria criteria) Java API, Plugin API: asynchronously loads a snapshot.- Parameters:
persistenceId- id of the persistent actor.criteria- selection criteria for loading.- Returns:
- a CompletionStage that will be completed when the loading is done (in Pekko 1.x, this was a Scala Future)
-
doSaveAsync
Java API, Plugin API: asynchronously saves a snapshot.- Parameters:
metadata- snapshot metadata.snapshot- snapshot.- Returns:
- a CompletionStage that will be completed when the saving is done (in Pekko 1.x, this was a Scala Future)
-
doDeleteAsync
Java API, Plugin API: deletes the snapshot identified by `metadata`.- Parameters:
metadata- snapshot metadata.- Returns:
- a CompletionStage that will be completed when the deletion is done (in Pekko 1.x, this was a Scala Future)
-
doDeleteAsync
Java API, Plugin API: deletes all snapshots matching `criteria`.- Parameters:
persistenceId- id of the persistent actor.criteria- selection criteria for deleting.- Returns:
- a CompletionStage that will be completed when the deletion is done (in Pekko 1.x, this was a Scala Future)
-