Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.9K
Ranked #4K
~421 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for charchar88

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] …

Member Avatar for charchar88
0
164
Member Avatar for profyou

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.

Member Avatar for canwilf
0
98

The End.