+act #2075 Added possibility to pass an ExecutionContext to an ActorSystem

This commit is contained in:
Dario Rexin 2014-01-16 23:24:06 +01:00
parent 32b76adb9a
commit 4b2d98c5cb
8 changed files with 173 additions and 23 deletions

View file

@ -11,7 +11,11 @@ Default dispatcher
------------------
Every ``ActorSystem`` will have a default dispatcher that will be used in case nothing else is configured for an ``Actor``.
The default dispatcher can be configured, and is by default a ``Dispatcher`` with a "fork-join-executor", which gives excellent performance in most cases.
The default dispatcher can be configured, and is by default a ``Dispatcher`` with the specified ``default-executor``.
If an ActorSystem is created with an ExecutionContext passed in, this ExecutionContext will be used as the default executor for all
dispatchers in this ActorSystem. If no ExecutionContext is given, it will fallback to the executor specified in
``akka.actor.default-dispatcher.default-executor.fallback``. By default this is a "fork-join-executor", which
gives excellent performance in most cases.
.. _dispatcher-lookup-java: