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 ----------------------