ConcurrencyInfo

class ConcurrencyInfo(val dispatcher: CoroutineDispatcher, val coroutineScope: CoroutineScope) : ExecutionContext.Element

Constructors

Link copied to clipboard
fun ConcurrencyInfo(dispatcher: CoroutineDispatcher, coroutineScope: CoroutineScope)

Types

Link copied to clipboard
object Key : ExecutionContext.Key<ConcurrencyInfo>

Functions

Link copied to clipboard
open override fun <R> fold(initial: R, operation: (R, ExecutionContext.Element) -> R): R
Link copied to clipboard
open operator override fun <E : ExecutionContext.Element> get(key: ExecutionContext.Key<E>): E?
Link copied to clipboard
open override fun minusKey(key: ExecutionContext.Key<*>): ExecutionContext
Link copied to clipboard
open operator fun plus(context: ExecutionContext): ExecutionContext

Properties

Link copied to clipboard
val coroutineScope: CoroutineScope
Link copied to clipboard
val dispatcher: CoroutineDispatcher
Link copied to clipboard
open override val key: ExecutionContext.Key<*>