Sending Messages From Non-Actors in Akka
Basically actorRef.tell("MSG", null);
creates a record like
(actorRef, Envelope(msg, sender))
and put it into ActorSystem
's message queue. Thus tell
is not linked to the actor in any way. The tell
method itself is undoubtedly thread-safe.