Examples of activity keywords Branch, Queue usage
Hi all,
Can anyone please give me examples where we can use Branch and Queue keywords explicitly.
I am also wondering what is the use of branch if we can call an activity conditionally(to mimic the scenario where calling activity having steps after branch step.) and in jump condition use exit activity.
***Edited by Moderator Marissa to update platform capability tags****
Queue instruction is used to call activity asynchronously. Let's say in ActivityA you have Queue ActivityB step. As soon this step is reached ActivityB will be be queued to be executed in background and ActivityA next steps will proceed as it is without waiting for ActivityB to complete.
Batch instruction completely transfers the control to called activity.
Let us know if this helps :)