From c47d3ef0a1a810ddfc66809e0ea1ade6bcb81c78 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Thu, 15 Dec 2011 11:24:51 +0100 Subject: [PATCH] Adding a note describing the serialization of Typed Actor method calls --- akka-docs/scala/typed-actors.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/akka-docs/scala/typed-actors.rst b/akka-docs/scala/typed-actors.rst index 2fd782e341..85a078e4f7 100644 --- a/akka-docs/scala/typed-actors.rst +++ b/akka-docs/scala/typed-actors.rst @@ -15,6 +15,10 @@ The advantage of Typed Actors vs. Actors is that with TypedActors you have a sta Typed Actors are implemented using `JDK Proxies `_ which provide a pretty easy-worked API to intercept method calls. +.. note:: + + Just as with regular Akka Actors, Typed Actors process one call at a time. + The tools of the trade ----------------------