From cb3bcf113f3b14b481894675eb3dd1024ecec963 Mon Sep 17 00:00:00 2001 From: Roland Date: Fri, 9 Mar 2012 09:13:00 +0100 Subject: [PATCH] add section on when to use typed actors --- akka-docs/java/typed-actors.rst | 15 +++++++++++++++ akka-docs/scala/typed-actors.rst | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/akka-docs/java/typed-actors.rst b/akka-docs/java/typed-actors.rst index f6b0c072e3..799e5f030c 100644 --- a/akka-docs/java/typed-actors.rst +++ b/akka-docs/java/typed-actors.rst @@ -15,6 +15,21 @@ Typed Actors are implemented using `JDK Proxies `_ to be leaky. Hence +TypedActors are not what we think of first when we talk about making highly +scalable concurrent software easier to write correctly. They have their niche, +use them sparingly. The tools of the trade ---------------------- diff --git a/akka-docs/scala/typed-actors.rst b/akka-docs/scala/typed-actors.rst index 88015cce86..1b88cd44f8 100644 --- a/akka-docs/scala/typed-actors.rst +++ b/akka-docs/scala/typed-actors.rst @@ -15,6 +15,21 @@ Typed Actors are implemented using `JDK Proxies `_ to be leaky. Hence +TypedActors are not what we think of first when we talk about making highly +scalable concurrent software easier to write correctly. They have their niche, +use them sparingly. The tools of the trade ----------------------