Interface IConditionNodeDefinition

All Superinterfaces:
IProcessNodeDefinition, IProcessStepDefinition, IWaitNodeDefinition
All Known Implementing Classes:
ConditionNodeDefinition

public interface IConditionNodeDefinition extends IWaitNodeDefinition
Interface for nodes that wait for a condition to become true.
Since:
7.0
Author:
O. Kerpershoek
  • Method Details

    • getCondition

      ICondition getCondition()
      This method returns the condition that should be evaluated for this node. The execution of the process should be blocked at this node at long as the condition evaluates to either unknown or false. Once the condition evaluates to true, the processing will continue from this node.
      Specified by:
      getCondition in interface IProcessStepDefinition
      Returns:
      the condition that should be evaluated for this node.