Delegate DispatcherComposer
A function that enhances the dispatcher. This is the returned type of a Middleware<TStoreState> and is used to compose the dispatcher with other middleware using ApplyMiddleware<TState>(params Middleware<TState>[]).
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public delegate Dispatcher DispatcherComposer(Dispatcher dispatcher)
Parameters
Type | Name | Description |
---|---|---|
Dispatcher | dispatcher | The dispatcher to enhance. |
Returns
Type | Description |
---|---|
Dispatcher | The enhanced dispatcher. |
See Also
Middleware<TStoreState>
ApplyMiddleware<TState>(params Middleware<TState>[])