Skip to content

Instantly share code, notes, and snippets.

@hardikm9850
Last active May 9, 2021 13:33
Show Gist options
  • Save hardikm9850/9b90816fe22a407c3379de5598deee9d to your computer and use it in GitHub Desktop.
Save hardikm9850/9b90816fe22a407c3379de5598deee9d to your computer and use it in GitHub Desktop.
fun fetchUsers() {
val call = api.getUsersOverNetwork()
call.addCallback { result ->
when (result) {
is Success<User> -> {
// do something with the result
}
is Error -> {
// handle the error
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment