Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnLeave.cs
2
4{
8 public class OnLeave : ActionReference
9 {
13 public OnLeave()
14 : base()
15 {
16 }
17
21 public override string LocalName => nameof(OnLeave);
22
27 public override IStateMachineNode Create()
28 {
29 return new OnLeave();
30 }
31 }
32}
Abstract base class for nodes referencing an action.
Action executed when entering a state.
Definition: OnLeave.cs:9
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: OnLeave.cs:27