Skip to content

Instantly share code, notes, and snippets.

@KhomDrake
Last active March 21, 2022 00:27
Show Gist options
  • Save KhomDrake/5e8bec8cff619ae9e22f09c4f17b88d3 to your computer and use it in GitHub Desktop.
Save KhomDrake/5e8bec8cff619ae9e22f09c4f17b88d3 to your computer and use it in GitHub Desktop.
suspend fun setupMovies(completion: Continuation<Any?>) {
val continuation = ..
when(continuation.label) {
..
3 -> {
println("Terminou")
continuation.resume(Unit)
}
else -> throw IllegalStateException(...)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment