elizarov
01/17/2017, 10:50 AMval lifetime = Lifetime() // fresh lifetime for my background coroutine
runRuspending(lifetime) { ... } // fork-off some background process
// when you don't need it anymore
lifetime.cancel() // will kill that coroutine and all coroutines it had forked, too