IOCoroutineDispatcher

class IOCoroutineDispatcher(nThreads: Int) : CoroutineDispatcher, Closeable

Default ktor fixed size dispatcher for doing non-blocking I/O operations and selection

Constructors

Link copied to clipboard
fun IOCoroutineDispatcher(nThreads: Int)

Functions

Link copied to clipboard
open override fun close()

Gracefully shutdown dispatcher.

Link copied to clipboard
open override fun dispatch(context: CoroutineContext, block: Runnable)
Link copied to clipboard
open fun dispatchYield(context: CoroutineContext, block: Runnable)
Link copied to clipboard
open override fun <R> fold(initial: R, operation: (R, CoroutineContext.Element) -> R): R
Link copied to clipboard
open operator override fun <E : CoroutineContext.Element> get(key: CoroutineContext.Key<E>): E?
Link copied to clipboard
open override fun <T> interceptContinuation(continuation: Continuation<T>): Continuation<T>
Link copied to clipboard
open fun isDispatchNeeded(context: CoroutineContext): Boolean
Link copied to clipboard
open override fun minusKey(key: CoroutineContext.Key<*>): CoroutineContext
Link copied to clipboard
open operator fun plus(context: CoroutineContext): CoroutineContext
operator fun plus(other: CoroutineDispatcher): CoroutineDispatcher
Link copied to clipboard
open override fun releaseInterceptedContinuation(continuation: Continuation<*>)
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val key: CoroutineContext.Key<*>