RdCoroutineScope

open class RdCoroutineScope : CoroutineScope

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cancelledScope: CoroutineScope
Link copied to clipboard

Functions

Link copied to clipboard
fun <T> async(lifetime: Lifetime, context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, action: suspend CoroutineScope.() -> T): Deferred<T>
Link copied to clipboard
fun launch(lifetime: Lifetime, context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, action: suspend CoroutineScope.() -> Unit): Job
Link copied to clipboard
open fun onException(throwable: Throwable)