I have a function, `fun send(): Int`. Within that...
# coroutines
z
I have a function,
fun send(): Int
. Within that method, I need to kick of an asynchronous operation, but block the
fun send()
from returning until a specific condition of that asynchronous operation completes. Is there a specific coroutine I should use for this?