Class ProcessNodeHandler
java.lang.Object
com.aquima.interactions.process.impl.handlers.NodeHandlerBase
com.aquima.interactions.process.impl.handlers.ProcessNodeHandler
- All Implemented Interfaces:
ITaskHandler
- Direct Known Subclasses:
CallNodeHandler
,RootNodeHandler
Base class for process task handlers.
- Since:
- 7.1
- Author:
- O. Kerpershoek
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final ProcessCaseRepository
protected final ProcessEngine
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ProcessNodeHandler
(ProcessCaseRepository caseRepository, ProcessEngine engine) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
cancelChildTasks
(IEvaluationContext context, ITaskModel[] childTasks) protected boolean
checkConditionalTasksForProcess
(IEvaluationContext context, ITaskModel parentTask, ProcessCaseRepository caseRepository) protected abstract void
completeNode
(IEvaluationContext context, ITaskModel processTask, String exitAction) protected boolean
containsOpenTasks
(ITaskModel[] childTasks) void
processNode
(IEvaluationContext context, ITaskModel processTask) This method should process the task, and if the evaluation is successful, schedule the follow-up tasks.Methods inherited from class com.aquima.interactions.process.impl.handlers.NodeHandlerBase
calculateTimeout, scheduleExpiringJob, schedulePriorityReevaluation, scheduleTimerJob, setPostponedJobs
-
Field Details
-
caseRepository
-
processEngine
-
-
Constructor Details
-
ProcessNodeHandler
-
-
Method Details
-
completeNode
protected abstract void completeNode(IEvaluationContext context, ITaskModel processTask, String exitAction) -
processNode
Description copied from interface:ITaskHandler
This method should process the task, and if the evaluation is successful, schedule the follow-up tasks.- Specified by:
processNode
in interfaceITaskHandler
- Parameters:
context
- The current context of the task.processTask
- The task that should be processed.- Throws:
AppException
- This exception is thrown when the task could not be processed.
-
containsOpenTasks
-
checkConditionalTasksForProcess
protected boolean checkConditionalTasksForProcess(IEvaluationContext context, ITaskModel parentTask, ProcessCaseRepository caseRepository) throws AppException - Throws:
AppException
-
cancelChildTasks
-