February 2018
Intermediate to advanced
552 pages
13h 46m
English
If want to develop an Akka Persistence component or Actor, add the PersistenceActor trait to this Actor, as shown here:
class HelloWorldActor extends PersistentActor{
// Actor State goes here
// Actor Operations goes here
}
Here, PersistentActor is a trait defined in the akka.persistence package. It marks our HelloWorldActor as a Persistence Actor.
Read now
Unlock full access