akka persistence - Is it possible to send messages of type ActorState=>ActorState to a Persistent Actor and later restore its state from an event journal? -
let's consider following scenario:
- a persistent actor state
actorstate
. - messages of type
m:actorstate=>actorstate
m
transforms actor's state- a series of messages of type
m:actorstate=>actorstate
sent actor
questions:
can
actorstate
restored event journal using event sourcing (by replaying messages sent actor) ?what restriction posed on type of messages
m
allowed sent persistent actor such state of actor (actorstate
) can restored (after system reboot) event journal replaying messages actor?
Comments
Post a Comment