Last active
May 29, 2019 02:38
-
-
Save rodriguesabner/0af81e65148b0b5f1219534d658d638e to your computer and use it in GitHub Desktop.
Meidum (new Thread)
This file contains 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
@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