Skip to content

Instantly share code, notes, and snippets.

@omkar-tenkale
Created June 3, 2023 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omkar-tenkale/0dcd32c82bb4959342146f352b642434 to your computer and use it in GitHub Desktop.
Save omkar-tenkale/0dcd32c82bb4959342146f352b642434 to your computer and use it in GitHub Desktop.
launch(Dispatcher.Main){
println("Download Started")
// launch(Dispatcher.Background)
withContext(Dispatcher.Background) {
println("Download in progress")
downloader.download()
}
println("Download Complete")
}
// Output
Download Started
Download in progress
Download Complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment