What happen if multiple threads will call await() method of CountDownLatch?
We have for example 3 threads Thread1, Thread2, Thread3. Thread1 has running job. Thread2,Thread3 will call await method. What will be a result?
Thread2 will be resumed at the same time as Thread3 or Thread3 will wait for Thread2 ending?