NodeState Enumeration

The state a NodeBase is in.

Definition

Namespace: MobileTrack.EventHandler.NodeHandlers
Assembly: MobileTrack.EventHandler (in MobileTrack.EventHandler.exe) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
internal enum NodeState

Members

Initial0 Initial state, before the previous nodes have completed.
WaitingForInput1 The node is waiting for input to be filled in; this state is usually invoked if a previous node has completed, but not all other previous nodes this node depends on have completed.
Executing2 The node is currently executing its logic.
Completed3 The node has successfully completed its logic.
Failed4 The node has failed to complete its logic; this can be due to an Exception or faulty user input.
NotOurFault5 The node has failed because a third-party service failed to complete its logic.

See Also