kotlin.coroutines.experimental.startCoroutine
startCoroutine
fun <R, T> (suspend R.() -> T).startCoroutine( receiver: R, completion: Continuation<T>)
Platform and version requirements: Kotlin 1.1
Starts coroutine with receiver type R and result type T. This function creates and start a new, fresh instance of suspendable computation every time it is invoked. The 登录查看完整内容