From ca0cf4860fd52a9eea2613ff63f15696c52c0ff6 Mon Sep 17 00:00:00 2001 From: yiksanchan Date: Wed, 1 Apr 2020 14:15:56 -0700 Subject: [PATCH] Update interaction-patterns.md Fix markdown formatting --- akka-docs/src/main/paradox/typed/interaction-patterns.md | 1 + 1 file changed, 1 insertion(+) diff --git a/akka-docs/src/main/paradox/typed/interaction-patterns.md b/akka-docs/src/main/paradox/typed/interaction-patterns.md index e6b25ac4aa..b2465e0cdf 100644 --- a/akka-docs/src/main/paradox/typed/interaction-patterns.md +++ b/akka-docs/src/main/paradox/typed/interaction-patterns.md @@ -246,6 +246,7 @@ Java **Problems:** The returned `ActorRef` ignores all messages sent to it, therefore it should be used carefully. + * Passing it around inadvertently as if it was a normal `ActorRef` may result in broken actor-to-actor interactions. * Using it when performing an `ask` from outside the Actor System will cause the @scala[`Future`]@java[`CompletionStage`] returned by the `ask` to timeout since it will never complete. * Finally, it's legal to `watch` it, but since it's of a special kind, it never terminates and therefore you will never receive a `Terminated` signal from it.