Invoking workflow error

Hi,

I had invoked a workflow in uipath but when I saw the output I noticed something very weird. In normal programming when we call a function the execution of the current function stops till the called function execution terminates similarly in uipath when we call a workflow does the execute stops till the workflow gets executed or it executes next piece of activity?

Thank you

Unless you’re using parallelization activities, it works linearly, just like nested method calls.
Check it in debug with slow step if still unsure.

Do note that if there’s high frequency of logs they sometimes do not display in order. Check log file if unsure.

Ok, Thank you for help I will check it out.