Parallel Flow in VB
Summary
Parallel Flow in VBContent
Hi Everyone,
I have a use case in my VB app where I am calling two action chains on the page Load (vbEnter). Each action chain is calling a REST API to fetch data. Since these REST calls are mutually independent, i tried calling them in Parallel Flow. I got the desired result . My question which approach should i follow because I checked the log and did not find any difference in the performance
1 - Calling two separate Action Chains in vb Enter
2 - One Parallel flow Action chain with two REST calls in vbEnter.
0