| Action |
At the end of each Channel an Action decides, how to consume each message.
|
| ActionHandler |
ActionHandler are responsible to handle the execution of the final Action of a Channel.
|
| ActionHandlerSet |
The ActionHandlerSet defines the mapping of Actions to their respective ActionHandler.
|
| Call |
The Call Action is used to perform an immediate jump to a different Channel.
|
| CallActionHandler |
The ActionHandler implementation for the Call Action.
|
| Consume |
The Consume Action calls the given consumer for every message that reached the end of the Channel.
|
| ConsumerActionHandler |
The ActionHandler implementation for the Consume Action.
|
| Jump |
This Action takes the message and sends it in the given Channel.
|
| JumpActionHandler |
The ActionHandler implementation for the Jump Action.
|
| Return |
The Return Action is used to return from a previously executed Call Action.
|
| ReturnActionHandler |
The ActionHandler implementation for the Return Action.
|
| Subscription |
A Subscription object manages a list of Subscribers.
|
| SubscriptionActionHandler |
The ActionHandler implementation for the Subscription Action.
|