diff --git a/akka-docs/rst/java/untyped-actors.rst b/akka-docs/rst/java/untyped-actors.rst index e9a432abcf..3d67f1569c 100644 --- a/akka-docs/rst/java/untyped-actors.rst +++ b/akka-docs/rst/java/untyped-actors.rst @@ -519,6 +519,10 @@ involves creating an internal actor for handling this reply, which needs to have a timeout after which it is destroyed in order not to leak resources; see more below. +.. note:: + A Java 8 variant of the ``ask`` pattern that returns a ``CompletionStage`` instead of a Scala ``Future`` + is available in the ``akka.pattern.PatternsCS`` object. + .. warning:: To complete the future with an exception you need send a Failure message to the sender.