Skip to content

Instantly share code, notes, and snippets.

@KhomDrake
Last active March 20, 2022 23:53
Show Gist options
  • Save KhomDrake/16d9039c790f5160747f4760f11dbcc5 to your computer and use it in GitHub Desktop.
Save KhomDrake/16d9039c790f5160747f4760f11dbcc5 to your computer and use it in GitHub Desktop.
suspend fun setupMovies(completion: Continuation<Any?>) {
class SetupMoviesStateMachine(completion: Continuation<Any?>): CoroutineImpl(completion) {
var token: Token? = null
var movies: List<Movie>? = null
var result: Any? = null
var label: Int = 0
override fun invokeSuspend(result: Any?) {
this.result = result
setupMovies(this)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment