When using `async` why is `context` mandatory? I s...
# coroutines
k
When using
async
why is
context
mandatory? I simply want to do the equivalent of the following C#'s. I must admit I'm struggling
Copy code
// running on UI thread
doStuffToUI();
var result = await client.makeNetworkCallAsync(stuff)
doMoreStuffToUI(result)