Skip to content

Instantly share code, notes, and snippets.

@RBusarow
Created July 22, 2019 17:10
Show Gist options
  • Save RBusarow/da484306f0c56f23917ec9fda226f96a to your computer and use it in GitHub Desktop.
Save RBusarow/da484306f0c56f23917ec9fda226f96a to your computer and use it in GitHub Desktop.
Conceptualization of CoroutineContext as a data class
data class CoroutineContext(
val job: Job? = null,
val interceptor: ContinuationInterceptor? = null,
val exceptionHandler: CoroutineExceptionHandler? = null,
val coroutineName: CoroutineName? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment