elizarov
01/17/2017, 10:34 AMrunSuspending
will be somewhat like:
fun runSuspending(context: CoroutineContext = EmptyContext, block: suspend () -> Unit) {
val actualContext = currentContext + context
// now use actualContext to start coroutine
}