Sequential Behaviour in Microflow

0
Hi All, I wonder if Microflows has a sequential behaviour. I mean, I create a Microflow A and also call inside it another one (B) before doing all the actions I put in A. So, is there any option to not continue in Microflow A until B finishes? My App doesn’t work well by this issue. Regards, Javier.
asked
2 answers
2

Hey Javier,

The microflow execution logic is exactly as you described. The remaining logic/actions in Microflow A will not execute until (sub)microflow B is complete. Perhaps there’s more to your question? Could you be more specific?

Additionally, the Task Queue allows more asynchronous execution of logic, if that’s more what you are looking for...

 

answered
0

You should be using parallel split in your case and calling the two microflows A & B in each of the split path. So, use a third Microflow C and call both A &B inside C using parallel split paths

answered