From e52c24f0633b4674dc3774e08d94303629e5894f Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Wed, 18 May 2011 11:54:16 +0200 Subject: [PATCH] Adding warning of using WorkStealingDispatcher with TypedActors --- akka-docs/java/typed-actors.rst | 2 ++ akka-docs/scala/typed-actors.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/akka-docs/java/typed-actors.rst b/akka-docs/java/typed-actors.rst index 8de961e515..daed909727 100644 --- a/akka-docs/java/typed-actors.rst +++ b/akka-docs/java/typed-actors.rst @@ -11,6 +11,8 @@ The Typed Actors are implemented through `Typed Actors `_ then take a look at Akka's `Spring integration `_. +** WARNING: ** Do not configure to use a WorkStealingDispatcher with your TypedActors, it just isn't safe with how TypedActors currently are implemented. This limitation will most likely be removed in the future. + Creating Typed Actors --------------------- diff --git a/akka-docs/scala/typed-actors.rst b/akka-docs/scala/typed-actors.rst index d2963ddae7..f68567745e 100644 --- a/akka-docs/scala/typed-actors.rst +++ b/akka-docs/scala/typed-actors.rst @@ -11,6 +11,8 @@ The Typed Actors are implemented through `Typed Actors `_ then take a look at Akka's `Spring integration `_. +** WARNING: ** Do not configure to use a WorkStealingDispatcher with your TypedActors, it just isn't safe with how TypedActors currently are implemented. This limitation will most likely be removed in the future. + Creating Typed Actors ---------------------