Skip to content

Instantly share code, notes, and snippets.

@kuceraf
Created June 5, 2022 12:36
Show Gist options
  • Save kuceraf/902d5ac935fe3616677aa4e95073163d to your computer and use it in GitHub Desktop.
Save kuceraf/902d5ac935fe3616677aa4e95073163d to your computer and use it in GitHub Desktop.
fun main() {
uuidSequence().forEach { value -> println(value) }
}
fun uuidSequence(): Sequence<UUID> = sequence {
while (true) {
Thread.sleep(100)
yield(UUID.randomUUID())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment