Merge pull request #2125 from ktoso/3982-doc-clarify-eventstream-is-local-ktoso

=doc #3982 Clarify that EventStream is local only
This commit is contained in:
Konrad Malawski 2014-04-14 09:57:12 +02:00
commit 3421a966d6
2 changed files with 8 additions and 0 deletions

View file

@ -141,6 +141,10 @@ it can be subscribed like this:
.. includecode:: code/docs/event/LoggingDocTest.java#deadletters
.. note::
The event stream is a *local facility*, meaning that it will *not* distribute events to other nodes in a clustered environment (unless you subscribe a Remote Actor to the stream explicitly).
If you need to broadcast events in an Akka cluster, *without* knowing your recipients explicitly (i.e. obtaining their ActorRefs), you may want to look into: :ref:`distributed-pub-sub`.
Default Handlers
----------------

View file

@ -136,6 +136,10 @@ how a simple subscription works:
.. includecode:: code/docs/event/LoggingDocSpec.scala#deadletters
.. note::
The event stream is a *local facility*, meaning that it will *not* distribute events to other nodes in a clustered environment (unless you subscribe a Remote Actor to the stream explicitly).
If you need to broadcast events in an Akka cluster, *without* knowing your recipients explicitly (i.e. obtaining their ActorRefs), you may want to look into: :ref:`distributed-pub-sub`.
Default Handlers
----------------