-
Notifications
You must be signed in to change notification settings - Fork 4
/
SnapshotExample.scala
48 lines (38 loc) · 1.36 KB
/
SnapshotExample.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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: 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: 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(10000)
system.terminate()
}