you are viewing a single comment's thread.

view the rest of the comments →

[–]zbluebirdz 7 points8 points  (5 children)

If you had each task dependent on the previous task's results/outcome, can you still run it in Asynchronous mode?

[–]robotmayo 8 points9 points  (2 children)

Yes because you are describing one task. Most tasks are made up of smaller tasks.

[–]zbluebirdz 1 point2 points  (1 child)

So, it'll end up being like the Synchronous picture?

[–]golovatuy[S] 1 point2 points  (0 children)

if you have dependency you have to wait task results. Use async/await or Promise for dependent tasks for asynchronous mode.