Skip to content

Instantly share code, notes, and snippets.

@rodriguesabner
Last active May 29, 2019 02:38
Show Gist options
  • Save rodriguesabner/0af81e65148b0b5f1219534d658d638e to your computer and use it in GitHub Desktop.
Save rodriguesabner/0af81e65148b0b5f1219534d658d638e to your computer and use it in GitHub Desktop.
Meidum (new Thread)
@Override
public Thread newThread(Runnable r) {
Thread t = new Thread(r, "My Thread");
t.setDaemon(true);
return t;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment