Created
October 17, 2018 19:05
-
-
Save mayojava/d9b3851adeaa6da0f7da27727124a953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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