Skip to content

Instantly share code, notes, and snippets.

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