An ActorProxy is an actor that runs on a different node in the network. More...
#include <actorproxy.hpp>
Public Member Functions | |
virtual void | enqueue (const Message &msg) |
Enqueues msg to the actors mailbox. | |
virtual void | linkTo (const ActorRef &who) |
Link who to this actor. | |
virtual bool | backlinkTo (ActorRef &who) |
Link who to this actor and return true on success. |
An ActorProxy is an actor that runs on a different node in the network.
Definition at line 42 of file actorproxy.hpp.
bool acedia::ActorProxy::backlinkTo | ( | ActorRef & | who | ) | [virtual] |
Link who
to this actor and return true on success.
If you call backlinkTo on an exited actor that actor will return true but calls linkExited on who
.
who | the actor which asks for a backlink |
Implements acedia::AbstractActor.
Definition at line 57 of file actorproxy.cpp.