Skip to content

Instantly share code, notes, and snippets.

@fayaz07
Created December 25, 2022 04:34
Show Gist options
  • Save fayaz07/ccbac341050984481f6ba7584a122569 to your computer and use it in GitHub Desktop.
Save fayaz07/ccbac341050984481f6ba7584a122569 to your computer and use it in GitHub Desktop.
var job: Job? = null
fun makeApiCall() {
if (job?.isActive == true) {
job?.cancel()
}
job = viewModelScope.launch {
// ... your API call
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment