Class StepResult
This class a result of applying a step function.
public class StepResult
- Inheritance
-
StepResult
- Inherited Members
Properties
EdgeMetadata
Additional data to store in the edge leading to the next state.
public object EdgeMetadata { get; set; }
Property Value
State
The next state.
public IState State { get; set; }
Property Value
StepFunctions
The list of step functions that should be applied in the next state.
public IList<IStepFunction> StepFunctions { get; set; }