Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IEventPreparation.cs
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Threading.Tasks;
5using Waher.Script;
6
8{
13 {
19 Task Prepare(Variables Variables, List<KeyValuePair<string, object>> Tags);
20
26
33 void ExportPlantUml(StreamWriter Output, string Name, int Index);
34 }
35}
Collection of variables.
Definition: Variables.cs:25
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
Interface for event preparation nodes
void Release(Variables Variables)
Releases resources at the end of an event.
void ExportPlantUml(StreamWriter Output, string Name, int Index)
Exports the node to PlantUML script in a markdown document.
Task Prepare(Variables Variables, List< KeyValuePair< string, object > > Tags)
Prepares Variables for the execution of an event.