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