Skip to content

//reactivestate-core/com.ensody.reactivestate/CoroutineLauncher/rawLaunch

rawLaunch

[common]\ open fun rawLaunch(context: CoroutineContext, start: CoroutineStart, block: suspend CoroutineScope.() -> Unit): Job

Launches a coroutine without any error handling or loading state tracking.

Parameters

common

context additional to CoroutineScope.coroutineContext context of the coroutine.
start coroutine start option. The default value is CoroutineStart.DEFAULT.
block the coroutine code which will be invoked in the context of the provided scope.