Question,
I'm stuck on async code. When does await actually suspend and give back control to the event loop?
For example if i have a bunch of nested coroutines that await all the way down, then the very last one actually awaits on io, ie actually awaits some data or places in queue or returns data, etc
This is different behaviours right?