Class PersistenceTestKitSnapshotPlugin
- java.lang.Object
- 
- akka.persistence.testkit.PersistenceTestKitSnapshotPlugin
 
- 
- All Implemented Interfaces:
- Actor,- ActorLogging,- SnapshotStore
 
 public class PersistenceTestKitSnapshotPlugin extends java.lang.Object implements SnapshotStore INTERNAL APIPersistence testkit plugin for snapshots. 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface akka.actor.ActorActor.emptyBehavior$, Actor.ignoringBehavior$
 
- 
 - 
Constructor SummaryConstructors Constructor Description PersistenceTestKitSnapshotPlugin()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidakka$actor$Actor$_setter_$context_$eq(ActorContext x$1)Scala API: Stores the context for this actor, including self, and sender.protected voidakka$actor$Actor$_setter_$self_$eq(ActorRef x$1)The 'self' field holds the ActorRef for this actor.protected voidakka$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> x$1)static com.typesafe.config.Configconfig()ActorContextcontext()Scala API: Stores the context for this actor, including self, and sender.scala.concurrent.Future<scala.runtime.BoxedUnit>deleteAsync(SnapshotMetadata metadata)Plugin API: deletes the snapshot identified bymetadata.scala.concurrent.Future<scala.runtime.BoxedUnit>deleteAsync(java.lang.String persistenceId, SnapshotSelectionCriteria criteria)Plugin API: deletes all snapshots matchingcriteria.static PersistenceTestKitSnapshotPlugin$getInstance()scala.concurrent.Future<scala.Option<SelectedSnapshot>>loadAsync(java.lang.String persistenceId, SnapshotSelectionCriteria criteria)Plugin API: asynchronously loads a snapshot.static java.lang.StringPluginId()scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit>receiveSnapshotStore()scala.concurrent.Future<scala.runtime.BoxedUnit>saveAsync(SnapshotMetadata metadata, java.lang.Object snapshot)Plugin API: asynchronously saves a snapshot.ActorRefself()The 'self' field holds the ActorRef for this actor.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface akka.actor.ActoraroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, postStop, preRestart, preStart, sender, supervisorStrategy, unhandled
 - 
Methods inherited from interface akka.actor.ActorLogging_log_$eq, log
 - 
Methods inherited from interface akka.persistence.snapshot.SnapshotStorereceive, receivePluginInternal, senderPersistentActor, tryReceivePluginInternal
 
- 
 
- 
- 
- 
Method Detail- 
PluginIdpublic static java.lang.String PluginId() 
 - 
getInstancepublic static PersistenceTestKitSnapshotPlugin$ getInstance() 
 - 
configpublic static com.typesafe.config.Config config() 
 - 
receiveSnapshotStorepublic final scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receiveSnapshotStore() - Specified by:
- receiveSnapshotStorein interface- SnapshotStore
 
 - 
akka$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eqprotected final void akka$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> x$1) - Specified by:
- akka$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eqin interface- SnapshotStore
 
 - 
contextpublic ActorContext 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! ActorContextis the Scala API.getContextreturns aAbstractActor.ActorContext, which is the Java API of the actor context.
 - 
selfpublic final ActorRef self() Description copied from interface:ActorThe 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message 
 - 
akka$actor$Actor$_setter_$context_$eqprotected void akka$actor$Actor$_setter_$context_$eq(ActorContext x$1) 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! ActorContextis the Scala API.getContextreturns aAbstractActor.ActorContext, which is the Java API of the actor context.- Specified by:
- akka$actor$Actor$_setter_$context_$eqin interface- Actor
 
 - 
akka$actor$Actor$_setter_$self_$eqprotected final void akka$actor$Actor$_setter_$self_$eq(ActorRef x$1) 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:
- akka$actor$Actor$_setter_$self_$eqin interface- Actor
 
 - 
loadAsyncpublic scala.concurrent.Future<scala.Option<SelectedSnapshot>> loadAsync(java.lang.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 interface- SnapshotStore
- Parameters:
- persistenceId- id of the persistent actor.
- criteria- selection criteria for loading.
 
 - 
saveAsyncpublic scala.concurrent.Future<scala.runtime.BoxedUnit> saveAsync(SnapshotMetadata metadata, java.lang.Object snapshot) Description copied from interface:SnapshotStorePlugin API: asynchronously saves a snapshot.This call is protected with a circuit-breaker. - Specified by:
- saveAsyncin interface- SnapshotStore
- Parameters:
- metadata- snapshot metadata.
- snapshot- snapshot.
 
 - 
deleteAsyncpublic 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 interface- SnapshotStore
- Parameters:
- metadata- snapshot metadata.
 
 - 
deleteAsyncpublic scala.concurrent.Future<scala.runtime.BoxedUnit> deleteAsync(java.lang.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 interface- SnapshotStore
- Parameters:
- persistenceId- id of the persistent actor.
- criteria- selection criteria for deleting.
 
 
- 
 
-