Skip to content

Instantly share code, notes, and snippets.

@AlexGladkov
Created February 20, 2021 13:42
Show Gist options
  • Save AlexGladkov/0631e47c6a9e158068ead44fa9eff399 to your computer and use it in GitHub Desktop.
Save AlexGladkov/0631e47c6a9e158068ead44fa9eff399 to your computer and use it in GitHub Desktop.
Cycle
// fields
private var needsToBreakCycle = false
for (i in 0..<100) {
if (needsToBreakCycle) continue
// do work
}
Handler().postDelayed({
needsToBreakCycle = true
}, 5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment