OnJava8-Examples/tasks/SimpleDaemons.java

45 lines
1.4 KiB
Java
Raw Normal View History

2016-01-25 18:05:55 -08:00
// tasks/SimpleDaemons.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2016-01-25 18:05:55 -08:00
// Daemon threads don't prevent the program from ending
2015-06-15 17:47:35 -07:00
import java.util.concurrent.*;
public class SimpleDaemons implements Runnable {
@Override
public void run() {
try {
while(true) {
TimeUnit.MILLISECONDS.sleep(100);
2015-12-02 09:20:27 -08:00
System.out.println(
Thread.currentThread() + " " + this);
2015-06-15 17:47:35 -07:00
}
} catch(InterruptedException e) {
2015-11-03 12:00:44 -08:00
System.out.println("sleep() interrupted");
2015-06-15 17:47:35 -07:00
}
}
2016-01-25 18:05:55 -08:00
public static void
main(String[] args) throws Exception {
2015-06-15 17:47:35 -07:00
for(int i = 0; i < 10; i++) {
Thread daemon = new Thread(new SimpleDaemons());
daemon.setDaemon(true); // Must call before start()
daemon.start();
}
2015-11-03 12:00:44 -08:00
System.out.println("All daemons started");
2015-06-15 17:47:35 -07:00
TimeUnit.MILLISECONDS.sleep(175);
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
All daemons started
Thread[Thread-6,5,main] SimpleDaemons@b87187
Thread[Thread-4,5,main] SimpleDaemons@1fb28c1
Thread[Thread-8,5,main] SimpleDaemons@8ebcf
Thread[Thread-7,5,main] SimpleDaemons@54761d
Thread[Thread-9,5,main] SimpleDaemons@156afef
Thread[Thread-0,5,main] SimpleDaemons@1320c4d
Thread[Thread-3,5,main] SimpleDaemons@4683f2
Thread[Thread-2,5,main] SimpleDaemons@4f80f2
Thread[Thread-5,5,main] SimpleDaemons@29c11d
Thread[Thread-1,5,main] SimpleDaemons@9df74c
2015-09-07 11:44:36 -06:00
*/