Interface IAsyncThunkCreator<TPayload>
Interface for an async thunk creator.
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IAsyncThunkCreator<TPayload>
Type Parameters
Name | Description |
---|---|
TPayload | The type of the payload. |
Methods
Invoke()
Creates an async thunk.
Declaration
AsyncThunkAction<TPayload> Invoke()
Returns
Type | Description |
---|---|
AsyncThunkAction<TPayload> | The async thunk. |