@bherd-rb and @phelps-sg Take a look at the Akka persistence module for dealing with stateful actors...
Akka persistence enables stateful actors to persist their internal state so that it can be recovered when an actor is started, restarted after a JVM crash or by a supervisor, or migrated in a cluster.
Example use case would be recovering the state of an auction running on a node in a cluster that has failed.
@bherd-rb and @phelps-sg Take a look at the Akka persistence module for dealing with stateful actors...
Example use case would be recovering the state of an auction running on a node in a cluster that has failed.