`async(context) { ... }.await()` is equivalent to ...
# coroutines
e
async(context) { ... }.await()
is equivalent to
withContext(context) { ... }
and the later form should be always preferred.
👍🏽 2