Class JoinNodeHandler
- java.lang.Object
-
- com.aquima.interactions.process.impl.handlers.JoinNodeHandler
-
- All Implemented Interfaces:
INodeHandler
public class JoinNodeHandler extends Object implements INodeHandler
This handler is responsible for the JOIN nodes. As a join node only has a single next node and no behavior, this handler will just schedule the next node.- Since:
- 7.1
- Author:
- O. Kerpershoek
-
-
Constructor Summary
Constructors Constructor Description JoinNodeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
scheduleNode(IEvaluationContext context)
This method should schedule a task for the current node.
-
-
-
Method Detail
-
scheduleNode
public void scheduleNode(IEvaluationContext context) throws AppException
Description copied from interface:INodeHandler
This method should schedule a task for the current node. The context contains the current node and the parent task.- Specified by:
scheduleNode
in interfaceINodeHandler
- Parameters:
context
- This object contains information about the current node.- Throws:
AppException
- This exception is thrown when the task could not be scheduled.
-
-