From 514dfd80582c5015cebe3766d94f80717e3accf4 Mon Sep 17 00:00:00 2001 From: Tal Pressman Date: Thu, 24 Nov 2016 12:24:42 +0200 Subject: [PATCH] =doc update reference to resolveOneCS in Java documentation (#21726) (#21890) --- akka-docs/rst/java/remoting.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/rst/java/remoting.rst b/akka-docs/rst/java/remoting.rst index 9ea89144ff..4a1702d85a 100644 --- a/akka-docs/rst/java/remoting.rst +++ b/akka-docs/rst/java/remoting.rst @@ -79,8 +79,8 @@ To acquire an :class:`ActorRef` for an :class:`ActorSelection` you need to send a message to the selection and use the ``getSender`` reference of the reply from the actor. There is a built-in ``Identify`` message that all Actors will understand and automatically reply to with a ``ActorIdentity`` message containing the -:class:`ActorRef`. This can also be done with the ``resolveOne`` method of -the :class:`ActorSelection`, which returns a ``Future`` of the matching +:class:`ActorRef`. This can also be done with the ``resolveOneCS`` method of +the :class:`ActorSelection`, which returns a ``CompletionStage`` of the matching :class:`ActorRef`. .. note::