diff --git a/akka-docs/java/remoting.rst b/akka-docs/java/remoting.rst index 811aae8587..b32063fa07 100644 --- a/akka-docs/java/remoting.rst +++ b/akka-docs/java/remoting.rst @@ -54,6 +54,8 @@ As you can see from the example above the following pattern is used to find an ` akka://@:/ +For more details on how actor addresses and paths are formed and used, please refer to :ref:`addressing`. + Creating Actors Remotely ^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/akka-docs/java/untyped-actors.rst b/akka-docs/java/untyped-actors.rst index 23b9c18235..fa27b10437 100644 --- a/akka-docs/java/untyped-actors.rst +++ b/akka-docs/java/untyped-actors.rst @@ -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 ========================= diff --git a/akka-docs/scala/actors.rst b/akka-docs/scala/actors.rst index 13fe9a7d30..9cf166d226 100644 --- a/akka-docs/scala/actors.rst +++ b/akka-docs/scala/actors.rst @@ -258,7 +258,8 @@ 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`. Messages and immutability ========================= diff --git a/akka-docs/scala/remoting.rst b/akka-docs/scala/remoting.rst index cd99ea810b..f23491bcf1 100644 --- a/akka-docs/scala/remoting.rst +++ b/akka-docs/scala/remoting.rst @@ -58,6 +58,8 @@ As you can see from the example above the following pattern is used to find an ` akka://@:/ +For more details on how actor addresses and paths are formed and used, please refer to :ref:`addressing`. + Creating Actors Remotely ^^^^^^^^^^^^^^^^^^^^^^^^ @@ -123,6 +125,8 @@ This enables the remoting by installing the :class:`RemoteActorRefProvider` and chooses the default remote transport. All other options will be set specifically for each show case. +.. _remote-lookup-sample: + Remote Lookup -------------