Class PersistenceTestKitSnapshotPlugin
- All Implemented Interfaces:
Actor
,ActorLogging
,SnapshotStore
Persistence testkit plugin for snapshots.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.pekko.actor.Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$
-
Constructor Summary
ConstructorsConstructorDescriptionPersistenceTestKitSnapshotPlugin
(com.typesafe.config.Config cfg, String cfgPath) -
Method Summary
Modifier and TypeMethodDescriptionstatic com.typesafe.config.Config
config()
context()
Scala API: Stores the context for this actor, including self, and sender.scala.concurrent.Future<scala.runtime.BoxedUnit>
deleteAsync
(String persistenceId, SnapshotSelectionCriteria criteria) Plugin API: deletes all snapshots matchingcriteria
.scala.concurrent.Future<scala.runtime.BoxedUnit>
deleteAsync
(SnapshotMetadata metadata) Plugin API: deletes the snapshot identified bymetadata
.scala.concurrent.Future<scala.Option<SelectedSnapshot>>
loadAsync
(String persistenceId, SnapshotSelectionCriteria criteria) Plugin API: asynchronously loads a snapshot.protected void
Scala API: Stores the context for this actor, including self, and sender.protected final void
The 'self' field holds the ActorRef for this actor.protected final void
org$apache$pekko$persistence$snapshot$SnapshotStore$_setter_$receiveSnapshotStore_$eq
(scala.PartialFunction<Object, scala.runtime.BoxedUnit> x$1) static String
PluginId()
final scala.PartialFunction<Object,
scala.runtime.BoxedUnit> scala.concurrent.Future<scala.runtime.BoxedUnit>
saveAsync
(SnapshotMetadata metadata, Object snapshot) Plugin API: asynchronously saves a snapshot.final ActorRef
self()
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, wait
Methods inherited from interface org.apache.pekko.actor.Actor
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, postStop, preRestart, preStart, sender, supervisorStrategy, unhandled
Methods inherited from interface org.apache.pekko.actor.ActorLogging
_log_$eq, log
Methods inherited from interface org.apache.pekko.persistence.snapshot.SnapshotStore
receive, receivePluginInternal, senderPersistentActor, tryReceivePluginInternal
-
Constructor Details
-
PersistenceTestKitSnapshotPlugin
-
-
Method Details
-
PluginId
-
getInstance
-
config
public static com.typesafe.config.Config config() -
receiveSnapshotStore
- Specified by:
receiveSnapshotStore
in interfaceSnapshotStore
-
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_$eq
in interfaceSnapshotStore
-
context
Description copied from interface:Actor
Scala 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.ActorContext
is the Scala API.getContext
returns apekko.actor.AbstractActor.ActorContext
, which is the Java API of the actor context. -
self
Description copied from interface:Actor
The 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
-
org$apache$pekko$actor$Actor$_setter_$context_$eq
Description copied from interface:Actor
Scala 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.ActorContext
is the Scala API.getContext
returns apekko.actor.AbstractActor.ActorContext
, which is the Java API of the actor context.- Specified by:
org$apache$pekko$actor$Actor$_setter_$context_$eq
in interfaceActor
-
org$apache$pekko$actor$Actor$_setter_$self_$eq
Description copied from interface:Actor
The '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_$eq
in interfaceActor
-
loadAsync
public scala.concurrent.Future<scala.Option<SelectedSnapshot>> loadAsync(String persistenceId, SnapshotSelectionCriteria criteria) Description copied from interface:SnapshotStore
Plugin API: asynchronously loads a snapshot.If the future
Option
isNone
then all events will be replayed, i.e. there was no snapshot. If snapshot could not be loaded theFuture
should 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:
loadAsync
in interfaceSnapshotStore
- Parameters:
persistenceId
- id of the persistent actor.criteria
- selection criteria for loading.
-
saveAsync
public scala.concurrent.Future<scala.runtime.BoxedUnit> saveAsync(SnapshotMetadata metadata, Object snapshot) Description copied from interface:SnapshotStore
Plugin API: asynchronously saves a snapshot.This call is protected with a circuit-breaker.
- Specified by:
saveAsync
in interfaceSnapshotStore
- Parameters:
metadata
- snapshot metadata.snapshot
- snapshot.
-
deleteAsync
Description copied from interface:SnapshotStore
Plugin API: deletes the snapshot identified bymetadata
.This call is protected with a circuit-breaker.
- Specified by:
deleteAsync
in interfaceSnapshotStore
- Parameters:
metadata
- snapshot metadata.
-
deleteAsync
public scala.concurrent.Future<scala.runtime.BoxedUnit> deleteAsync(String persistenceId, SnapshotSelectionCriteria criteria) Description copied from interface:SnapshotStore
Plugin API: deletes all snapshots matchingcriteria
.This call is protected with a circuit-breaker.
- Specified by:
deleteAsync
in interfaceSnapshotStore
- Parameters:
persistenceId
- id of the persistent actor.criteria
- selection criteria for deleting.
-