Hi there,
What do you guys think is the best way to model the following situation:
There’s a process where one of its tasks has a form in which the user defines a list of n values.
The idea is to take that list and, for every value, call another process providing the value itself as a variable.
I already tried two approaches:
- Used the
CallActivity
, providing the list as the collection… Which works as expected, but unfortunately it hangs there until every called process ends; - Instead
CallActivity
, used aSubProcess
and inside I created aSignalEndEvent
… which does what I want to achieve, but seems more complicated than theCallActivity
.
Which is the best way to achieve what I’m trying to do?
The idea is to use something like the CallActivity
(because of its simplicity) but asynchronously.
Thanks in advance,
Pedro Silva