startAsync

fun <T> Lifetime.startAsync(scheduler: IScheduler, start: CoroutineStart = CoroutineStart.DEFAULT, block: suspend CoroutineScope.() -> T): Deferred<T>


fun <T> Lifetime.startAsync(context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, block: suspend CoroutineScope.() -> T): Deferred<T>

Deprecated

Api renamed and moved to rd-core

Replace with

import com.jetbrains.rd.util.threading.coroutines.async
async(context, start, block)