RealmDispatcher

class RealmDispatcher(tag: String?) : CoroutineDispatcher, AutoCloseable

Functions

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

Properties

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