Skip to content

Instantly share code, notes, and snippets.

@KhomDrake
Last active March 20, 2022 23:28
Show Gist options
  • Save KhomDrake/44ec735d457895882db4760a89865625 to your computer and use it in GitHub Desktop.
Save KhomDrake/44ec735d457895882db4760a89865625 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