Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IExternalEvent.cs
1using System;
2using System.Collections.Generic;
4
6{
11 {
15 string Name
16 {
17 get;
18 }
19
23 string ActorName
24 {
25 get;
26 }
27
32 {
33 get;
34 }
35
39 IEnumerable<Parameter> Parameters
40 {
41 get;
42 }
43
50 void Trigger(IActor Source, params KeyValuePair<string, object>[] Arguments);
51
52 }
53}
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
Definition: IActor.cs:11
IEnumerable< Parameter > Parameters
Parameters
string ActorName
Optional name for actor variable reference of sender of external event.
void Trigger(IActor Source, params KeyValuePair< string, object >[] Arguments)
Method called when an external event has been received.
Interface for nodes that can register external events.