start Async
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
Content copied to clipboard
async(context, start, block)Content copied to clipboard