Concept Flow - Sequential vs parallel async execution
Start
Call async task 1
Wait for task 1 to finish
Call async task 2
Wait for task 2 to finish
End
Start
Call async task 1 and task 2 together
Wait for both tasks to finish
End
Shows two ways to run async tasks: one after another (sequential) or both at the same time (parallel).