What is java's equivalent of ManualResetEvent?
|
The closest I know of is the Semaphore. Just use it with a "permit" count of 1, and aquire/release will be pretty much the same as what you know from the
|
|||||||||||||
|
|
Try CountDownLatch with count of one.
|
|||||
|
|
|||||||||||
|
|
Based on:
from here: http://msdn.microsoft.com/en-us/library/system.threading.manualresetevent.aspx you possibly want to look at the Barriers in the Java concurrency package - specifically CyclicBarrier I believe: http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/CyclicBarrier.html It blocks a fixed number of threads until a particular event has occured. All the threads must come together at a barrier point. |
|||
|
|
|
I believe the crux of the .NET MRE is thread affinity and its ability to let all waiting threads go through when Set is called. I found the use of the Semaphore works well. However, if I get 10 or 15 threads waiting, then I run into another issue. Specifically, it occurs when Set is called. In .Net, all waiting threads are released. Using a semphore does not release all. So I wrapped it in a class. NOTE: I am very familiar with .NET threading. I am relatively new to Java threading and synchronization. Nevertheless, I am willing to jump in and get some real feedback. Here's my implementation with assumptions that a Java novice would make:
} Also note that I am basically betting that there's no more than a 1000 requests waiting for a release at any given time. By releasing and aquiring in batches, I am attempting to release any waiting threads. Note the call to WaitOne is working 1 permit at a time. |
||||
|
|