Can a spinoff flow be resolved before the main flow

Asked in an interview-we have a main flow and a spinoff flow,we want spin off sub flow to resolve when we are in main flow how to do that.

@TanyaS58

A spinoff occurs when one flow execution starts another flow execution that executes asynchronously and independently from the first flow execution. The first flow does not pause or wait for results from the second flow. The second flow may operate on the same work item, or a different work item, from the first flow.

Answer is yes since it is asynchronous process, sub process can resolve before main process

If I have answered your question please mark this reply as ‘Accept Solution’

Pavan Bojja

@Pavan Bojja how can we configure this requirement?

@TanyaS58

There is no configuration needed. You can mark any of the sub process as spinoff flow which can executed asynchrously and doesn’t depend on the main flow. The spinoff can be executed independently means it doesn’t depend on main flow rule.