Class LiftedAction
A lifted action is an action that is wrapped in another action. The lifted reducer used in the DevTools IInstrumentedStore<TState> will unwrap the action and perform it.
Inherited Members
Namespace: Unity.AppUI.Redux.DevTools
Assembly: Unity.AppUI.Redux.dll
Syntax
public record LiftedAction : DevToolsAction, IAction, IEquatable<DevToolsAction>, IEquatable<LiftedAction>
Constructors
LiftedAction(string, IAction)
A lifted action is an action that is wrapped in another action. The lifted reducer used in the DevTools IInstrumentedStore<TState> will unwrap the action and perform it.
Declaration
public LiftedAction(string type, IAction action)
Parameters
Type | Name | Description |
---|---|---|
string | type | The type of the action. |
IAction | action | The action to perform. |
Properties
action
The action to perform.
Declaration
public IAction action { get; }
Property Value
Type | Description |
---|---|
IAction |
timestamp
The timestamp of the action creation.
Declaration
public long timestamp { get; }
Property Value
Type | Description |
---|---|
long |