No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
There is a library in java to help with that. Try one of the classes here: [URL="http://download.oracle.com/javase/1,5.0/docs/api/java/util/concurrent/package-summary.html"]http://download.oracle.com/javase/1,5.0/docs/api/java/util/concurrent/package-summary.html[/URL] Specifically, try to see if these meet your needs: [B][U]CountDownLatch:[/U][/B] A synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes. [B][U]CyclicBarrier:[/U][/B] …
No. However, Thread.wait() does, until it is notified, at which point it regains the monitor if it is the chosen thread that is woken up.
The End.
canwilf