কেউ জাভা CountDownLatch
কী এবং কখন এটি ব্যবহার করবেন তা বুঝতে আমাকে সহায়তা করতে পারে?
এই প্রোগ্রামটি কীভাবে কাজ করে সে সম্পর্কে আমার খুব পরিষ্কার ধারণা নেই। আমি বুঝতে পারি যে তিনটি থ্রেড একবারে শুরু হবে এবং প্রতিটি থ্রেড 3000 মিমি পরে কাউন্টডাউনল্যাচকে কল করবে। সুতরাং গণনা এক এক করে হ্রাস পাবে। ল্যাচ শূন্য হওয়ার পরে প্রোগ্রামটি "সম্পূর্ণ" প্রিন্ট করে। আমি যেভাবে বুঝতে পেরেছি তা ভুল।
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
class Processor implements Runnable {
private CountDownLatch latch;
public Processor(CountDownLatch latch) {
this.latch = latch;
}
public void run() {
System.out.println("Started.");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
latch.countDown();
}
}
// ------------------------------------------------ -----
public class App {
public static void main(String[] args) {
CountDownLatch latch = new CountDownLatch(3); // coundown from 3 to 0
ExecutorService executor = Executors.newFixedThreadPool(3); // 3 Threads in pool
for(int i=0; i < 3; i++) {
executor.submit(new Processor(latch)); // ref to latch. each time call new Processes latch will count down by 1
}
try {
latch.await(); // wait until latch counted down to 0
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Completed.");
}
}