February 2018
Intermediate to advanced
552 pages
13h 46m
English
The Akka Toolkit implements the Actor Model to support the high-level concurrency API. It follows all the principles discussed in the previous section with some additional features.
In the Akka Toolkit, messages coming from one Actor are guaranteed to be received by another Actor in the same order. However, there is no guarantee that the messages are coming from more than one Actor.
The Akka Toolkit supports other major features, such as remoting, clustering, streams, and more.
In the Akka Toolkit, a recipient Actor can reply directly to the sender Actor, as shown here:
sender ! message
The Akka Toolkit supports different kinds ...
Read now
Unlock full access