Skip to content

Commit

Permalink
Merge branch '0.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Tudone committed Apr 17, 2016
2 parents 10b3d4b + c8c67b6 commit c6c08a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ The event-source behavior is an actor that can be notified of *event* messages,

To create an event source actor, simply construct an instance of the [`EventSourceActor`]({{javadoc}}/actors/behaviors/EventSourceActor.html) class. Event handlers are instances of [`EventHandler`]({{javadoc}}/actors/behaviors/EventHandler.html). Event handlers can be registered or unregistered with the actor, and events sent to the actor, through the behavior's interface, the [`EventSource`]({{javadoc}}/actors/behaviors/EventSource.html) class.

Event handlers are called synchronously on the same strand as the actor's, so they may delay processing by other handlers if they block the strand.
Event handlers are called synchronously on the same strand as the actor's and _should not_ block the strand.

#### FiniteStateMachineActor

Expand Down

0 comments on commit c6c08a2

Please sign in to comment.