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 mtransforms actor's state- a series of messages of type
m:actorstate=>actorstatesent actor
questions:
can
actorstaterestored event journal using event sourcing (by replaying messages sent actor) ?what restriction posed on type of messages
mallowed sent persistent actor such state of actor (actorstate) can restored (after system reboot) event journal replaying messages actor?
Comments
Post a Comment