The cyclicbarrier tag has no wiki summary.
9
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 ...
5
votes
3answers
207 views
How to implement Barrier class from .NET 4 functionality in .NET 3.5 (C#)
For some reasons I have to stick to .NET 3.5 and I need a functionality of Barrier class from .NET 4. I have a bunch of threads that do some work and I want them to wait for each other until all are ...
5
votes
5answers
955 views
What is the fastest cyclic synchronization in Java (ExecutorService vs. CyclicBarrier vs. X)?
Which Java synchronization construct is likely to provide the best
performance for a concurrent, iterative processing scenario with a
fixed number of threads like the one outlined below? After ...
4
votes
4answers
1k views
How do I get the java.concurrency.CyclicBarrier to work as expected
I am writing code that will spawn two thread and then wait for them to sync up using the CyclicBarrier class. Problem is that the cyclic barrier isn't working as expected and the main thread doesnt ...
2
votes
2answers
130 views
Java - gracefully quit threads
I got a bunch of threads that perform calculations. They are "synchronized" using a CyclicBarrier. When any thread's run() method finishes, I want all other threads to exit as well once they call ...
2
votes
2answers
103 views
What's the number should be the “n” of new CyclicBarrier(n)?
Recently I learned CyclicBarrier, but here's a question:
Code:
public class Main {
public static CyclicBarrier c;
public static void main(String[] agrs){
int threadsCount = 5;
...
2
votes
1answer
168 views
One thread stopping too early regardless of CyclicBarrier
I am aware of the fact that the following code may seem vulgar, but I am new to these things and just tried everything in order to get it to work..
Problem: Even though I am using (possible in a ...
1
vote
1answer
171 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 ...
0
votes
1answer
58 views
What could be the reason that CyclicBarrier.await() function generates a Null pointer Exception
I am using the CyclicBarrier class , await() to synchronize the different threads which process different documents simultaneously. However this function seems to return a Null pointer exception in ...