Class Meta<TThunkArg>
The metadata of the thunk.
Implements
IEquatable<Meta<TThunkArg>>
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public record Meta<TThunkArg> : IEquatable<Meta<TThunkArg>>
Type Parameters
Name | Description |
---|---|
TThunkArg | The type of the argument to pass to the thunk. |
Constructors
Meta(ThunkStatus)
The metadata of the thunk.
Declaration
public Meta(ThunkStatus thunkStatus)
Parameters
Type | Name | Description |
---|---|---|
ThunkStatus | thunkStatus | The status of the thunk. |
Properties
arg
The argument passed to the thunk.
Declaration
public TThunkArg arg { get; }
Property Value
Type | Description |
---|---|
TThunkArg |
requestId
The request ID of the thunk.
Declaration
public string requestId { get; }
Property Value
Type | Description |
---|---|
string |
thunkStatus
The status of the thunk.
Declaration
public ThunkStatus thunkStatus { get; }
Property Value
Type | Description |
---|---|
ThunkStatus |