Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OutgoingEvent.cs
2
4{
8 [TypeName(TypeNameSerialization.LocalName)]
9 [CollectionName("OutgoingPEP")]
10 [NoBackup("PEP Events might have been sent after backup and before restoration. By excluding such messages from backups, offline messages are not at risk of being sent multiple times.")]
11 public class OutgoingEvent
12 {
13 private string objectId;
14 private NeuroLedgerPepEvent e;
15
20 {
21 }
22
26 [ObjectId]
27 public string ObjectId
28 {
29 get => this.objectId;
30 set => this.objectId = value;
31 }
32
36 [DefaultValueNull]
38 {
39 get => this.e;
40 set => this.e = value;
41 }
42 }
43}
Abstract base class for Neuro-Ledger PEP events.
NeuroLedgerPepEvent Event
Queued event object.
OutgoingEvent()
Outgoing event, waiting to be sent.
TypeNameSerialization
How the type name should be serialized.