Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
XmppIoTActivityNode.cs
1using System;
3
5{
9 public abstract class XmppIoTActivityNode : ActivityNode
10 {
17 : base(Parent, Model)
18 {
19 }
20
24 public override string SchemaResource => XmppIoTNode.XmppIoTSchemaResource;
25
29 public override string Namespace => XmppIoTNode.XmppIoTNamespace;
30 }
31}
Root node of a simulation model
Definition: Model.cs:49
Abstract base class for activity nodes
Definition: ActivityNode.cs:15
Abstract base class for IoT XMPP activity nodes.
override string Namespace
XML Namespace where the element is defined.
override string SchemaResource
Points to the embedded XML Schema resource defining the semantics of the XML namespace.
XmppIoTActivityNode(ISimulationNode Parent, Model Model)
Abstract base class for IoT XMPP activity nodes.
Abstract base class for IoT XMPP simulation nodes.
Definition: XmppIoTNode.cs:10
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
ISimulationNode Parent
Parent node in the simulation model.