Adding a note describing the serialization of Typed Actor method calls

This commit is contained in:
Viktor Klang 2011-12-15 11:24:51 +01:00
parent 66c89fee4b
commit c47d3ef0a1

View file

@ -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 <http://docs.oracle.com/javase/6/docs/api/java/lang/reflect/Proxy.html>`_ 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
----------------------