OnJava8-Examples/threads/SingleThreadExecutor2.java

30 lines
973 B
Java
Raw Normal View History

2016-07-05 14:46:09 -06:00
// threads/SingleThreadExecutor2.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
import java.util.concurrent.*;
public class SingleThreadExecutor2 {
public static void main(String[] args)
throws InterruptedException {
ExecutorService exec =
Executors.newSingleThreadExecutor();
for(int id = 0; id < 10; id++)
exec.execute(new SleepAndPrintTask(id));
exec.shutdown();
exec.awaitTermination(5, TimeUnit.SECONDS);
}
}
/* Output:
SleepAndPrintTask[0] pool-1-thread-1
SleepAndPrintTask[1] pool-1-thread-1
SleepAndPrintTask[2] pool-1-thread-1
SleepAndPrintTask[3] pool-1-thread-1
SleepAndPrintTask[4] pool-1-thread-1
SleepAndPrintTask[5] pool-1-thread-1
SleepAndPrintTask[6] pool-1-thread-1
SleepAndPrintTask[7] pool-1-thread-1
SleepAndPrintTask[8] pool-1-thread-1
SleepAndPrintTask[9] pool-1-thread-1
*/