Skip to content

Instantly share code, notes, and snippets.

@mayojava
Created October 26, 2018 10:36
Show Gist options
  • Select an option

  • Save mayojava/acde56dce0333a4a9b9c10f5834b68f0 to your computer and use it in GitHub Desktop.

Select an option

Save mayojava/acde56dce0333a4a9b9c10f5834b68f0 to your computer and use it in GitHub Desktop.
Check for coroutine cancellation
while (isActive) {
// print a message twice a second
if (System.currentTimeMillis() >= nextPrintTime) {
println("I'm sleeping ${i++} ...")
nextPrintTime += 500L
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment