Retrieve the application Akka Actor system.
Retrieve the application Akka Actor system.
Example:
val newActor = Akka.system.actorOf[Props[MyActor]]
Executes a block of code asynchronously in the application Akka Actor system.
Executes a block of code asynchronously in the application Akka Actor system.
Example:
val promiseOfResult = Akka.future {
intensiveComputing()
}
(Since version 2.2) Use scala.concurrent.Future() instead.
Helper to access the application defined Akka Actor system.