Skip to content

Instantly share code, notes, and snippets.

@RBusarow
Created July 8, 2019 00:55
Show Gist options
  • Save RBusarow/a983351386319cd46d01495ce815c024 to your computer and use it in GitHub Desktop.
Save RBusarow/a983351386319cd46d01495ce815c024 to your computer and use it in GitHub Desktop.
Snippet of the withContext() coroutine builder
public suspend fun <T> withContext(
context: CoroutineContext,
block: suspend CoroutineScope.() -> T
): T = suspendCoroutineUninterceptedOrReturn sc@ { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment