Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CollectionRepairedEventArgs.cs
1using System.Threading.Tasks;
2
3namespace Waher.Persistence
4{
10 public delegate Task CollectionRepairedEventHandler(object Sender, CollectionRepairedEventArgs e);
11
16 {
17 private readonly FlagSource[] flagged;
18
25 : base(Collection)
26 {
27 this.flagged = Flagged;
28 }
29
33 public FlagSource[] Flagged => this.flagged;
34 }
35}
Event arguments for collection events.
Event arguments for collection repaired events.
CollectionRepairedEventArgs(string Collection, FlagSource[] Flagged)
Event arguments for collection repaired events.
FlagSource[] Flagged
If the collection have been flagged as corrupt, and from what stack traces. Is null,...
Source of code flagging a collection for repair.
Definition: FlagSource.cs:9
delegate Task CollectionRepairedEventHandler(object Sender, CollectionRepairedEventArgs e)
Event handler for collection repaired events.