Hi All,
I have a queston that I was following Henrique Pinto technique @
I got an observation that when I created two branches and in one branch i just used a dumb transforamtion step to deliberately make that branch to wait for some required time, the steps of both branch is executing sequentially, meaning that when 1 step completes of either branch then the next step is executed, rather than executing steps of each branch in seperate thread (or process).
This is failing the technique to make wait 1 branch and to execute other branch. As holding 1 branch through Thread.sleep is causing whole process to wait.
Could anybody explain this thing clearly?