``` c.startCoroutine(object : Continuation<T&gt...
# coroutines
k
Copy code
c.startCoroutine(object : Continuation<T> {
    override fun resume(value: T) { /* former handleResult */ }
    override fun resumeWithException(e: Throwable) { /* former handleException */ }
})