I had this question when working with Camunda
How to reconfigure the process here so that when reassigning a task, they are executed in parallel, independently of each other
For example:
let’s say 1 person reassigned to 2 and 3
after 2 people reassign to 4 and 5
the problem here is that the tasks will not get to 4-5 until 3 is finished
and I need them all to run in parallel without waiting for each other
parallel works like this (2nd picture), if there is such a gateway, it waits for all services to complete
Thanks in advance
