Hi all,
We have to implement third party task list
Thinking of using job worker user task. When worker is activate add task with job id to our implementation and when user completes it we complete the job.
now the problem is when a path reach a terminating end there can be tasks which are not completed.
Ex: start->t1-> parallel gateway with lane 1 and lane 2
Lane 1 - t3-> terminate
lane 2 - t4 to t 10 ->end - this more of optional tasks
In this case when Lane 1 reach the end process is terminated. in Operate all remaining active tasks from Lane 2 are shown with terminated icon. We want to do something similar (cancel all remaining activities in our task list implementation)
Is it possible to listen to process status or task termination events?
Or is there any other way to achieve this usecase?