When I call:
actor_ ! Exit
How is this being converted into a construction of:
case class Exit(from: AbstractActor, reason: AnyRef)
In particular, how is it that when I call this from a remote (client) actor which has been link
ed to a remote (server) actor, that the server receives an instance of Exit
where the from
property is an actor:
'remotesender0@Node(10.10.7.90,8366)
Basically I'd like to figure out how I can get a handle on this remote-client-actor object!