Skip to content

Instantly share code, notes, and snippets.

@MovileGente
Created March 21, 2019 14:33
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 MovileGente/3b049b6606e91e3a8fbe9966604a0fe3 to your computer and use it in GitHub Desktop.
Save MovileGente/3b049b6606e91e3a8fbe9966604a0fe3 to your computer and use it in GitHub Desktop.
Dissecando coroutines
// a keyword `suspend` define uma suspending function
suspend fun queryUser(id: Int): User {
 delay(100) // simulando latência de rede ou outra operação lenta
 return User(id = id, name = "gente.firme", email = "talentos@movile.com")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment