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

Popular posts from this blog

python - RuntimeError: can't re-enter readline -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -

ios - Pass NSDictionary from Javascript to Objective-c in JavascriptCore -