Skip to content

Instantly share code, notes, and snippets.

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