Update akka-docs/scala/dispatchers.rst

This commit is contained in:
Vibul Imtarnasan 2012-03-29 16:24:03 +12:00
parent 6f36cc950b
commit ae7835bf58

View file

@ -58,7 +58,7 @@ There are 4 different types of message dispatchers:
* PinnedDispatcher * PinnedDispatcher
- This dispatcher dedicates a unique thread for each actor passed in as reference. - This dispatcher dedicates a unique thread for each actor using it.
- Sharability: None - Sharability: None
@ -89,7 +89,7 @@ There are 4 different types of message dispatchers:
* CallingThreadDispatcher * CallingThreadDispatcher
- This dispatcher runs invocations on the current thread only. This dispatcher does not create any new threads, - This dispatcher runs invocations on the current thread only. This dispatcher does not create any new threads,
but it can be used from different threads concurrently for the same actor. but it can be used from different threads concurrently for the same actor. See :ref:`testing`
- Sharability: Unlimited - Sharability: Unlimited