Skip to content

Instantly share code, notes, and snippets.

@mayojava
Created October 17, 2018 19:05
Show Gist options
  • Save mayojava/d9b3851adeaa6da0f7da27727124a953 to your computer and use it in GitHub Desktop.
Save mayojava/d9b3851adeaa6da0f7da27727124a953 to your computer and use it in GitHub Desktop.
interface Continuation<in T> {
val context: CoroutineContext
fun resume(value: T)
fun resumeWithException(exception: Throwable)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment