something like ``` public suspend fun <T> Ve...
# coroutines
k
something like
Copy code
public suspend fun <T> Vertex.await() : T = suspendCoroutine { c ->
    sendMsg(...)... { callbackArg ->
       //... callback handler... 
       if (success) { c.resume(it) }
       else { c.resumeWithException(exceptionMsg) } 
}