Interface INodeHandler
-
- All Known Implementing Classes:
CallNodeHandler
,ChoiceNodeHandler
,ConditionNodeHandler
,EndNodeHandler
,EventNodeHandler
,GroupNodeHandler
,JoinNodeHandler
,NodeHandler
,ProcessEndNodeHandler
,TaskNodeHandler
,TimerNodeHandler
public interface INodeHandler
Interface for handlers that can schedule (or process) a task for a node definition.- Since:
- 7.1
- Author:
- O. Kerpershoek
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
scheduleNode(IEvaluationContext context)
This method should schedule a task for the current node.
-
-
-
Method Detail
-
scheduleNode
void scheduleNode(IEvaluationContext context) throws AppException
This method should schedule a task for the current node. The context contains the current node and the parent task.- Parameters:
context
- This object contains information about the current node.- Throws:
AppException
- This exception is thrown when the task could not be scheduled.
-
-