Question
ING Belgium SA NV
BE
Last activity: 4 May 2023 3:40 EDT
Parallel processing in case lifecycle
I have one stage containing three processes.
The first one should finish before going to the other ones.
The second and third should be parallel processes. So it becomes something like:
Stage X
Process 1
Process 2 || Process 3
I can add Process 3 as a parallel process, but will this do the trick? Or will Process 1 and 3 start at the same time then?
@Joris Claus When you have 3 parallel processes, all the 3 processes runs parallel. What you can do is, keep a work queue in the beginning of 2nd and 3rd process. In the end of 1st process you can keep an utility shape calling an activity to resume flow(2nd and 3rd). So till you resume, the assignments will be waiting in the work queue.