- public interface CoroutineContext {
-
- public operator fun
get(key: Key<E>): E? -
- public fun
fold(initial: R, operation: (R, Element) -> R): R -
- public operator fun plus(context: CoroutineContext): CoroutineContext{...}
-
- public fun minusKey(key: Key<*>): CoroutineContext
-
- public interface Key<E : Element>
-
- public interface Element : CoroutineContext {...}
- }