Class PendingAction<TPayload, TThunkArg>
An action dispatched when the thunk is pending.
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public record PendingAction<TPayload, TThunkArg> : Action<TPayload>, IEquatable<Action>, IEquatable<Action<TPayload>>, IEquatable<PendingAction<TPayload, TThunkArg>>
Type Parameters
Name | Description |
---|---|
TPayload | The type of the payload. |
TThunkArg | The type of the argument to pass to the thunk. |
Constructors
PendingAction(string, PendingMeta<TThunkArg>)
An action dispatched when the thunk is pending.
Declaration
public PendingAction(string type, PendingMeta<TThunkArg> meta)
Parameters
Type | Name | Description |
---|---|---|
string | type | The type of the action. |
PendingMeta<TThunkArg> | meta | The metadata of the action. |
Properties
meta
Declaration
public PendingMeta<TThunkArg> meta { get; }
Property Value
Type | Description |
---|---|
PendingMeta<TThunkArg> |