To split processing into two or more independent secondary flows that operate in parallel we should use
-
Split-For-Each
-
Split-Join
-
Called Flow
-
SpinOff Flow
B
Correct answer
Explanation
Split-Join is the Pega flow shape that allows you to split processing into two or more independent secondary flows that operate in parallel. Each parallel flow executes independently, and the parent flow waits for all parallel flows to complete before continuing. Split-For-Each is for iterating over a list, Called Flow is for invoking another flow sequentially, and SpinOff Flow is for asynchronous processing without waiting.