add a few cross references to remoting docs

This commit is contained in:
Roland 2011-12-26 18:39:42 +01:00
parent 17125af571
commit 1c770a2409
4 changed files with 11 additions and 2 deletions

View file

@ -54,6 +54,8 @@ As you can see from the example above the following pattern is used to find an `
akka://<actorsystemname>@<hostname>:<port>/<actor path>
For more details on how actor addresses and paths are formed and used, please refer to :ref:`addressing`.
Creating Actors Remotely
^^^^^^^^^^^^^^^^^^^^^^^^

View file

@ -225,8 +225,10 @@ Remote actor addresses may also be looked up, if remoting is enabled::
These look-ups return a (possibly remote) actor reference immediately, so you
will have to send to it and await a reply in order to verify that ``serviceB``
is actually reachable and running.
is actually reachable and running. An example demonstrating actor look-up is
given in :ref:`remote-lookup-sample` (Scala only for the time being).
.. FIXME make Java sample and link to it
Messages and immutability
=========================