Skip to content

Instantly share code, notes, and snippets.

@MrCrambo
Created June 2, 2020 09:38
Show Gist options
  • Save MrCrambo/03f2848e072d279781d2519c5dbbc3eb to your computer and use it in GitHub Desktop.
Save MrCrambo/03f2848e072d279781d2519c5dbbc3eb to your computer and use it in GitHub Desktop.
suspend fun fetchUser(): User {
return GlobalScope.async(Dispatchers.IO) {
// make network call
}.await()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment