diff --git a/akka-docs/scala/actors.rst b/akka-docs/scala/actors.rst index 548190c6fd..61843b412b 100644 --- a/akka-docs/scala/actors.rst +++ b/akka-docs/scala/actors.rst @@ -108,6 +108,9 @@ Here is an example: meaning of an actor restart, which is described here: :ref:`supervision-restart`. + Also avoid passing mutable state into the constructor of the Actor, since + the call-by-name block can be executed by another thread. + Props -----