Akka
The Akka framework extends the original Actor model in Scala by adding extraction capabilities such as support for a typed Actor, message dispatching, routing, load balancing, and partitioning, as well as supervision and configurability [16:7].
The Akka framework can be downloaded from the www.akka.io website, or through the Typesafe Activator at http://www.typesafe.com/platform.
Akka simplifies the implementation of Actor by encapsulating some of the details of Scala Actor in the akka.actor.Actor
and akka.actor.ActorSystem
classes.
The three methods you want to override are as follows:
prestart
: This is an optional method, invoked to initialize all the necessary resources such as file or database connection before the Actor is executedreceive
: This method defines the Actor's behavior and returns a partial function of typePartialFunction[Any, Unit]
postStop
: This is an optional method to clean up resources such as releasing memory, closing database connections, and socket or file...