NodeState Enumeration
| Initial | 0 |
Initial state, before the previous nodes have completed.
|
| WaitingForInput | 1 |
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.
|
| Executing | 2 |
The node is currently executing its logic.
|
| Completed | 3 |
The node has successfully completed its logic.
|
| Failed | 4 |
The node has failed to complete its logic; this can be due to an Exception or faulty user input.
|
| NotOurFault | 5 |
The node has failed because a third-party service failed to complete its logic.
|