OnJava8-Examples/threads/SingleThreadExecutor.java

50 lines
1.4 KiB
Java
Raw Normal View History

2016-07-05 14:46:09 -06:00
// threads/SingleThreadExecutor.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-07-05 14:46:09 -06:00
import java.util.concurrent.*;
public class SingleThreadExecutor {
public static void main(String[] args) {
ExecutorService exec =
Executors.newSingleThreadExecutor();
for(int id = 0; id < 10; id++)
exec.execute(new SleepAndPrintTask(id));
System.out.println("All tasks submitted");
exec.shutdown();
while(!exec.isTerminated()) {
System.out.println(
Thread.currentThread().getName() +
" awaiting termination");
try {
Thread.sleep(100);
} catch(InterruptedException e) {
throw new RuntimeException(e);
}
}
}
}
/* Output:
All tasks submitted
main awaiting termination
SleepAndPrintTask[0] pool-1-thread-1
main awaiting termination
2016-07-27 11:12:11 -06:00
SleepAndPrintTask[1] pool-1-thread-1
2016-07-22 14:45:35 -06:00
main awaiting termination
SleepAndPrintTask[2] pool-1-thread-1
2016-07-05 14:46:09 -06:00
main awaiting termination
2016-07-27 11:12:11 -06:00
SleepAndPrintTask[3] pool-1-thread-1
2016-07-05 14:46:09 -06:00
main awaiting termination
SleepAndPrintTask[4] pool-1-thread-1
main awaiting termination
SleepAndPrintTask[5] pool-1-thread-1
main awaiting termination
2016-07-27 11:12:11 -06:00
SleepAndPrintTask[6] pool-1-thread-1
2016-07-05 14:46:09 -06:00
main awaiting termination
2016-07-22 14:45:35 -06:00
SleepAndPrintTask[7] pool-1-thread-1
2016-07-05 14:46:09 -06:00
main awaiting termination
2016-07-27 11:12:11 -06:00
SleepAndPrintTask[8] pool-1-thread-1
2016-07-22 14:45:35 -06:00
main awaiting termination
2016-07-05 14:46:09 -06:00
SleepAndPrintTask[9] pool-1-thread-1
*/