Created
February 20, 2021 13:42
-
-
Save AlexGladkov/0631e47c6a9e158068ead44fa9eff399 to your computer and use it in GitHub Desktop.
Cycle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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