Interface ITaskServiceCallbacks
public interface ITaskServiceCallbacks
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onSubTaskUpdated
(Task subTask, String parentTaskId, String action, String updatedBy) Each onSubTaskUpdatedCallback will be invoked for each and every update of a sub taskvoid
onTaskAssigned
(Task task, String action, String previousOutcome, String previousOutcomeUpdatedBy) Each onTaskAssigned callback will be invoked when task is assigned due to initiation, reinitiation, outcome set, skip current assignment or routing slip override.void
onTaskCompleted
(Task task) Each onCompleteCallback will be invoked when the task is completed, expired, withdrawnvoid
onTaskUpdated
(Task task, String action, String updatedBy) Each onTaskUpdatedCallback will be invoked when task is updated.
-
Method Details
-
onTaskAssigned
void onTaskAssigned(Task task, String action, String previousOutcome, String previousOutcomeUpdatedBy) Each onTaskAssigned callback will be invoked when task is assigned due to initiation, reinitiation, outcome set, skip current assignment or routing slip override.- Parameters:
task
- The task that was assignedaction
- The action that caused assignmentpreviousOutcome
- The previous outcome if anypreviousOutcomeUpdatedBy
- The user who set the previous outcome
-
onTaskCompleted
Each onCompleteCallback will be invoked when the task is completed, expired, withdrawn- Parameters:
task
- The task that was completed
-
onTaskUpdated
Each onTaskUpdatedCallback will be invoked when task is updated. The update can be any of the actions that are not captured in the onCompleteCallback or onAssignedCallback. This callback will typically called for actions like escalate task, reassign task, payload updated, request for information, etc.- Parameters:
task
- The task that was updatedaction
- The action that caused the updateupdatedBy
- The user who updated the task
-
onSubTaskUpdated
Each onSubTaskUpdatedCallback will be invoked for each and every update of a sub task- Parameters:
subTask
- The sub task that was updatedparentTaskId
- The parent task id of this sub taskaction
- The action that caused the updateupdatedBy
- The user who updated the subTask
-