Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ILedgerExternalEvents.cs
1namespace Waher.Persistence
2{
6 public interface ILedgerExternalEvents
7 {
12 void RaiseEntryAdded(object Object);
13
18 void RaiseEntryUpdated(object Object);
19
24 void RaiseEntryDeleted(object Object);
25
30 void RaiseCollectionCleared(string Collection);
31 }
32}
Interface for proxy for reporting changes to the ledger from external sources.
void RaiseEntryDeleted(object Object)
Raise Ledger.EntryDeleted event.
void RaiseEntryUpdated(object Object)
Raise Ledger.EntryUpdated event.
void RaiseCollectionCleared(string Collection)
Raise Ledger.CollectionCleared event.
void RaiseEntryAdded(object Object)
Raise Ledger.EntryAdded event.