(cherry picked from commit de3249f7f4b859c3caa232e579d9a3bae7406803) Conflicts: akka-samples/akka-sample-persistence-scala/src/main/scala/sample/persistence/PersistentActorExample.scala
48 lines
1.4 KiB
Scala
48 lines
1.4 KiB
Scala
package sample.persistence
|
|
|
|
import akka.actor._
|
|
import akka.persistence._
|
|
|
|
object SnapshotExample extends App {
|
|
final case class ExampleState(received: List[String] = Nil) {
|
|
def updated(s: String): ExampleState = copy(s :: received)
|
|
override def toString = received.reverse.toString
|
|
}
|
|
|
|
class ExamplePersistentActor extends PersistentActor {
|
|
def persistenceId: String = "sample-id-3"
|
|
|
|
var state = ExampleState()
|
|
|
|
def receiveCommand: Actor.Receive = {
|
|
case "print" => println("current state = " + state)
|
|
case "snap" => saveSnapshot(state)
|
|
case SaveSnapshotSuccess(metadata) => // ...
|
|
case SaveSnapshotFailure(metadata, reason) => // ...
|
|
case s: String =>
|
|
persist(s) { evt => state = state.updated(evt) }
|
|
}
|
|
|
|
def receiveRecover: Actor.Receive = {
|
|
case SnapshotOffer(_, s: ExampleState) =>
|
|
println("offered state = " + s)
|
|
state = s
|
|
case evt: String =>
|
|
state = state.updated(evt)
|
|
}
|
|
|
|
}
|
|
|
|
val system = ActorSystem("example")
|
|
val persistentActor = system.actorOf(Props(classOf[ExamplePersistentActor]), "persistentActor-3-scala")
|
|
|
|
persistentActor ! "a"
|
|
persistentActor ! "b"
|
|
persistentActor ! "snap"
|
|
persistentActor ! "c"
|
|
persistentActor ! "d"
|
|
persistentActor ! "print"
|
|
|
|
Thread.sleep(1000)
|
|
system.shutdown()
|
|
}
|