Tagged Questions

A countdown latch is a synchronization primitive that allows one or more threads to wait until a certain number of operations are completed on other threads.

learn more… | top users | synonyms

11
votes
2answers
3k views

Java Concurrency Techniques

Here are two chunks of code that accomplish (what I think is) the same thing. I basically am trying to learn how to use Java 1.5's concurrency to get away from Thread.sleep(long). The first example ...
8
votes
4answers
3k views

Java concurrency : Countdown latch vs Cyclic Barrier

I was reading through the java.util.concurrent API, and found that CountDownLatch - A synchronization aid that allows one or more threads to wait until a set of operations being performed in other ...
4
votes
3answers
90 views

why CountDownLatch.getCount() returns a long but not an int?

I looked into the code, everything is int -- the parameter passed to CountDownLatch constructor is int, the variable in Sync is int, the return type of Sync.getCount() is int. But ...
1
vote
1answer
149 views

Resettable CountDownLatch Swap-In Equivilent

I need something which is directly equivalent to CountDownLatch, but is resettable (remaining thread-safe!). I can't use classic synchronisation constructs as they simply don't work in this situation ...
1
vote
1answer
232 views

CountDownLatch in C++ using Boost Mutexes and Condition

I tried to implement CountDownLatch using boost mutexes and condition variable. Below is the code and would like to know if I need to add anything else. How can I unit test this code as well? ...
1
vote
2answers
196 views

java concurrency: lightweight nonblocking semaphore?

I have a situation where I have a callback that I want to execute once. For the sake of argument let's say it looks like this: final X once = new X(1); Runnable r = new Runnable() { @Override ...
1
vote
2answers
219 views

CountdownLatch combine await(maxTime) and countdown()

I have several threads running for an almost infinite time and number of iteration. The iteration count being reset to 0 when a best solution has been found. A max number of iteration is set to ...
1
vote
2answers
969 views

Is there a C# equivalent to Java's CountDownLatch?

Is there a C# equivalent to Java's CountDownLatch?
0
votes
1answer
468 views

Java CountDownLatch used to wait for JFrame to dispose

I have referenced this previous question as well as other sources, but cannot get CountDownLatch to work correctly. Background: mainFrame creates new Frame called dataEntryFrame. When ...
0
votes
3answers
8k views

jQuery Countdown plugin and AJAX

I'm using jQuery Countdown plugin to implement a Countdown and call a webservice when timer expires. The problem is that I'm using AJAX on the page, and have to re-setup the Countdown on every AJAX ...
-1
votes
3answers
78 views

How to start 1K threads and continously run the threads on the same task when they complete

If I create 1K threads and launch them at the same time using a latch, once the threads complete my process ends. What I want to do is, as the thread ends, start up another thread to work on the same ...