One example is given by one of our trainers when he was explaining difference between CountDownLatch and CyclicBarrier.
CountDownLatch
: Suppose a stone can be lifted by 10 people so you will wait for all 10 to come. Then only you can lift the stone.
CyclicBarrier
: If you are going to a picnic, and you need to first meet at some common point from where you all will start your journey.
If Anybody agrees with these comments please give me some details.
I have already read the sun API for both these classes. But I need some more explaination.
CountDownLatch is used to make sure that a task waits for other threads before it starts. To understand its application, let us consider a server where the main task can only start when all the required services have started.
As stated in the definitions, CyclicBarrier allows a number of threads to wait on each other, whereas CountDownLatch allows one or more threads to wait for a number of tasks to complete. In short, CyclicBarrier maintains a count of threads whereas CountDownLatch maintains a count of tasks.
CountDownLatch and CyclicBarrier both used in multithreading environment and they both are part of. CountDownLatch − A synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes.
tl;dr: the main difference is that unlike a CyclicBarrier , once a CountDownLatch is done and over with, it cannot be reused. The javadoc mentions it explicitly: This is a one-shot phenomenon -- the count cannot be reset.
In a hypothetical theater:
Here, a person is a thread, a play is a resource.
The key difference is that CountDownLatch
separates threads into waiters and arrivers while all threads using a CyclicBarrier
perform both roles.
Your latch example implies that all ten people must wait to lift the stone together. This is not the case. A better real world example would be an exam prompter who waits patiently for each student to hand in their test. Students don't wait once they complete their exams and are free to leave. Once the last student hands in the exam (or the time limit expires), the prompter stops waiting and leaves with the tests.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With