Skip to content

Instantly share code, notes, and snippets.

@KhomDrake
Created March 8, 2022 02:22
Show Gist options
  • Save KhomDrake/4a2af725b8e293495ef5f767a78286a0 to your computer and use it in GitHub Desktop.
Save KhomDrake/4a2af725b8e293495ef5f767a78286a0 to your computer and use it in GitHub Desktop.
requestScope.launch(Dispatchers.Main) {
val moviesComedy = withContext(Dispatchers.IO) { loadMovies("Comedy") }
val moviesAction = withContext(Dispatchers.IO) { loadMovies("Action") }
showMoviesGenre(moviesComedy)
showMoviesGenre(moviesAction)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment