Adding docs about how to do remoting with TypedActors

This commit is contained in:
Viktor Klang 2012-02-27 15:18:45 +01:00
parent 572382b220
commit b9359a82a6
2 changed files with 16 additions and 0 deletions

View file

@ -180,3 +180,9 @@ By having your Typed Actor implementation class implement any and all of the fol
* ``TypedActor.PostRestart``
You can hook into the lifecycle of your Typed Actor.
Proxying
--------
You can use the ``typedActorOf`` that takes a TypedProps and an ActorRef to proxy the given ActorRef as a TypedActor.
This is usable if you want to communicate remotely with TypedActors on otehr machines, just look them up with ``actorFor`` and pass the ``ActorRef`` to ``typedActorOf``.