Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnEntryAdded.cs
2{
7 {
11 public OnEntryAdded()
12 : base()
13 {
14 }
15
19 public override string LocalName => nameof(OnEntryAdded);
20
25 public override IStateMachineNode Create()
26 {
27 return new OnEntryAdded();
28 }
29 }
30}
Abstract base class for entry event nodes.
Event raised when an entry in a collection, of a given type, is added to the ledger.
Definition: OnEntryAdded.cs:7
override string LocalName
Local name
Definition: OnEntryAdded.cs:19
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: OnEntryAdded.cs:25
OnEntryAdded()
Event raised when an entry in a collection, of a given type, is added to the ledger.
Definition: OnEntryAdded.cs:11