Chris Banes
1 min readMay 3, 2018

--

Your example is sequential, since you start and await on each iteration.

My method starts a coroutine for all items, and then awaits each of them.

By default async is eager, so just calling the method starts/enqueues the work. You can also make it lazy, so it only starts/enqueues when await is called.

--

--

Chris Banes
Chris Banes

No responses yet