Skip to content

Instantly share code, notes, and snippets.

@charlesmuchene
Created April 4, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlesmuchene/ff2fcfda3f6abac13d70bf4a39a3f2e6 to your computer and use it in GitHub Desktop.
Save charlesmuchene/ff2fcfda3f6abac13d70bf4a39a3f2e6 to your computer and use it in GitHub Desktop.
Thread with an indefinite loop
fun seriousWork() = thread(name = "Worker") {
while (!Thread.currentThread().isInterrupted) {
// Perform Genetic Sequencing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment