I'm trying to understand the behavior of queues in ThreadPoolExecutor
. In the below program, when I use LinkedBlockingQueue
, I can submit only one task to the thread pool at a time. But if I replace the LinkedBlockingQueue
with SynchronousQueue
, I could submit all the 5 tasks to the pool at an instant. How SynchronousQueue
differs from LinkedBlockingQueue
in this case ?
Java program :
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class Sample {
public static void main(String[] args) throws InterruptedException {
LinkedBlockingQueue<Runnable> threadPoolQueue = new LinkedBlockingQueue<>();
// SynchronousQueue<Runnable> threadPoolQueue = new SynchronousQueue<>();
ThreadFactory threadFactory = Executors.defaultThreadFactory();
ThreadPoolExecutor tpe = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60L, TimeUnit.SECONDS, threadPoolQueue, threadFactory);
Runnable np;
for (int i = 1; i <= 5; i++) {
np = new SampleWorker("ThreadPoolWorker " + i);
tpe.submit(np);
}
System.out.println(tpe.getCorePoolSize());
System.out.println(tpe.getPoolSize());
System.out.println(tpe.getActiveCount());
tpe.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
tpe.shutdown();
System.out.println("Main task finished");
}
}
class SampleWorker implements Runnable {
private String workerName;
SampleWorker(String tName) {
workerName = tName;
}
@Override
public void run() {
try {
for (int i = 1; i <= 10; i++) {
Thread.sleep(3000);
System.out.println(this.workerName);
}
System.out.println(this.workerName + " finished");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}