Skip to content

Instantly share code, notes, and snippets.

@GerardPaligot
Created June 25, 2021 20:42
Show Gist options
  • Save GerardPaligot/fd7d9597aeaad2818127b1d97239d436 to your computer and use it in GitHub Desktop.
Save GerardPaligot/fd7d9597aeaad2818127b1d97239d436 to your computer and use it in GitHub Desktop.
job = viewModelScope.launch(Dispatchers.IO) {
while (isActive) {
if (_times.value <= 0) {
job?.cancel()
return@launch
}
delay(timeMillis = 1000)
_times.value -= 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment