CountdownLatch await() is not waiting for last thread to end
I wrote a small peice of program to demonstrate the usage of CountDownLatch class in java. But, it not working as expected. I created 5 threads and assigned task to each thread. Now, each thread would wait for the start signal. Once the start signal is on, all thread start its work and call countDown().… Read More CountdownLatch await() is not waiting for last thread to end