Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Finally.cs
2{
6 public class Finally : ActionContainer
7 {
11 public Finally()
12 : base()
13 {
14 }
15
19 public override string LocalName => nameof(Finally);
20
25 public override IStateMachineNode Create()
26 {
27 return new Finally();
28 }
29 }
30}
Abstract base class for action nodes that contain other action nodes.
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: Finally.cs:25
Finally()
Actions executed last in a Try-statement.
Definition: Finally.cs:11