``` doX() something.await() doY() something.await(...
# coroutines
z
Copy code
doX()
something.await()
doY()
something.await()
doZ()
I want to make sure
doX
,
doY
and
doZ
all run in the same thread pool.