In this lecture we deploy Actors on a cluster of nodes, noticing that this does not change the programming model at all: Actors come fully prepared for remote interaction. This is enabled by hiding all their functionality behind a handle that only allows messages to be sent, the ActorRef
in Akka. We cover:
ActorPath
and its relationship with ActorRef
Cluster usage is demonstrated on the example of the link checker developed during an earlier lecture.