-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
enhancementNew feature or requestNew feature or request
Description
At the moment, action handlers only support synchronous handling of actions:
export interface IActionHandler {
handle(action: Action): ICommand | Action | void
}
However, since we already have an asynchronous nature with the server/client architecture, it would be great to add support for asynchronous action handlers too. They are (mainly) handled in the action dispatcher where dispatching of actions and execution of commands is already asynchronous anyways. Extending the capabilities of the action handler should therefore only be a minor addition to that functionality.
(originally triggered by #1605)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request