Java Doc for CountDownLatch.java in  » Apache-Harmony-Java-SE » java-package » java » util » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.util.concurrent 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.util.concurrent.CountDownLatch

CountDownLatch
public class CountDownLatch (Code)
A synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes.

A CountDownLatch is initialized with a given count. The CountDownLatch.await await methods block until the current CountDownLatch.getCount count reaches zero due to invocations of the CountDownLatch.countDown method, after which all waiting threads are released and any subsequent invocations of CountDownLatch.await await return immediately. This is a one-shot phenomenon -- the count cannot be reset. If you need a version that resets the count, consider using a CyclicBarrier .

A CountDownLatch is a versatile synchronization tool and can be used for a number of purposes. A CountDownLatch initialized with a count of one serves as a simple on/off latch, or gate: all threads invoking CountDownLatch.await await wait at the gate until it is opened by a thread invoking CountDownLatch.countDown . A CountDownLatch initialized to N can be used to make one thread wait until N threads have completed some action, or some action has been completed N times.

A useful property of a CountDownLatch is that it doesn't require that threads calling countDown wait for the count to reach zero before proceeding, it simply prevents any thread from proceeding past an CountDownLatch.await await until all threads could pass.

Sample usage: Here is a pair of classes in which a group of worker threads use two countdown latches:

  • The first is a start signal that prevents any worker from proceeding until the driver is ready for them to proceed;
  • The second is a completion signal that allows the driver to wait until all workers have completed.
 class Driver { // ...
 void main() throws InterruptedException {
 CountDownLatch startSignal = new CountDownLatch(1);
 CountDownLatch doneSignal = new CountDownLatch(N);
 for (int i = 0; i < N; ++i) // create and start threads
 new Thread(new Worker(startSignal, doneSignal)).start();
 doSomethingElse();            // don't let run yet
 startSignal.countDown();      // let all threads proceed
 doSomethingElse();
 doneSignal.await();           // wait for all to finish
 }
 }
 class Worker implements Runnable {
 private final CountDownLatch startSignal;
 private final CountDownLatch doneSignal;
 Worker(CountDownLatch startSignal, CountDownLatch doneSignal) {
 this.startSignal = startSignal;
 this.doneSignal = doneSignal;
 }
 public void run() {
 try {
 startSignal.await();
 doWork();
 doneSignal.countDown();
 } catch (InterruptedException ex) {} // return;
 }
 void doWork() { ... }
 }
 

Another typical usage would be to divide a problem into N parts, describe each part with a Runnable that executes that portion and counts down on the latch, and queue all the Runnables to an Executor. When all sub-parts are complete, the coordinating thread will be able to pass through await. (When threads must repeatedly count down in this way, instead use a CyclicBarrier .)

 class Driver2 { // ...
 void main() throws InterruptedException {
 CountDownLatch doneSignal = new CountDownLatch(N);
 Executor e = ...
 for (int i = 0; i < N; ++i) // create and start threads
 e.execute(new WorkerRunnable(doneSignal, i));
 doneSignal.await();           // wait for all to finish
 }
 }
 class WorkerRunnable implements Runnable {
 private final CountDownLatch doneSignal;
 private final int i;
 WorkerRunnable(CountDownLatch doneSignal, int i) {
 this.doneSignal = doneSignal;
 this.i = i;
 }
 public void run() {
 try {
 doWork(i);
 doneSignal.countDown();
 } catch (InterruptedException ex) {} // return;
 }
 void doWork() { ... }
 }
 

since:
   1.5
author:
   Doug Lea



Constructor Summary
public  CountDownLatch(int count)
     Constructs a CountDownLatch initialized with the given count.

Method Summary
public  voidawait()
     Causes the current thread to wait until the latch has counted down to zero, unless the thread is Thread.interrupt interrupted .

If the current CountDownLatch.getCount count is zero then this method returns immediately.

If the current CountDownLatch.getCount count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happen:

If the current thread:

  • has its interrupted status set on entry to this method; or
  • is Thread.interrupt interrupted while waiting,
then InterruptedException is thrown and the current thread's interrupted status is cleared.
public  booleanawait(long timeout, TimeUnit unit)
     Causes the current thread to wait until the latch has counted down to zero, unless the thread is Thread.interrupt interrupted , or the specified waiting time elapses.

If the current CountDownLatch.getCount count is zero then this method returns immediately with the value true.

If the current CountDownLatch.getCount count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happen:

If the count reaches zero then the method returns with the value true.

If the current thread:

  • has its interrupted status set on entry to this method; or
  • is Thread.interrupt interrupted while waiting,
then InterruptedException is thrown and the current thread's interrupted status is cleared.
public  voidcountDown()
     Decrements the count of the latch, releasing all waiting threads if the count reaches zero.

If the current CountDownLatch.getCount count is greater than zero then it is decremented.

public  longgetCount()
     Returns the current count.
public  StringtoString()
     Returns a string identifying this latch, as well as its state.


Constructor Detail
CountDownLatch
public CountDownLatch(int count)(Code)
Constructs a CountDownLatch initialized with the given count.
Parameters:
  count - the number of times CountDownLatch.countDown must be invokedbefore threads can pass through CountDownLatch.await.
throws:
  IllegalArgumentException - if count is less than zero.




Method Detail
await
public void await() throws InterruptedException(Code)
Causes the current thread to wait until the latch has counted down to zero, unless the thread is Thread.interrupt interrupted .

If the current CountDownLatch.getCount count is zero then this method returns immediately.

If the current CountDownLatch.getCount count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happen:

If the current thread:

  • has its interrupted status set on entry to this method; or
  • is Thread.interrupt interrupted while waiting,
then InterruptedException is thrown and the current thread's interrupted status is cleared.
throws:
  InterruptedException - if the current thread is interruptedwhile waiting.



await
public boolean await(long timeout, TimeUnit unit) throws InterruptedException(Code)
Causes the current thread to wait until the latch has counted down to zero, unless the thread is Thread.interrupt interrupted , or the specified waiting time elapses.

If the current CountDownLatch.getCount count is zero then this method returns immediately with the value true.

If the current CountDownLatch.getCount count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happen:

If the count reaches zero then the method returns with the value true.

If the current thread:

  • has its interrupted status set on entry to this method; or
  • is Thread.interrupt interrupted while waiting,
then InterruptedException is thrown and the current thread's interrupted status is cleared.

If the specified waiting time elapses then the value false is returned. If the time is less than or equal to zero, the method will not wait at all.
Parameters:
  timeout - the maximum time to wait
Parameters:
  unit - the time unit of the timeout argument. true if the count reached zero and falseif the waiting time elapsed before the count reached zero.
throws:
  InterruptedException - if the current thread is interruptedwhile waiting.




countDown
public void countDown()(Code)
Decrements the count of the latch, releasing all waiting threads if the count reaches zero.

If the current CountDownLatch.getCount count is greater than zero then it is decremented. If the new count is zero then all waiting threads are re-enabled for thread scheduling purposes.

If the current CountDownLatch.getCount count equals zero then nothing happens.




getCount
public long getCount()(Code)
Returns the current count.

This method is typically used for debugging and testing purposes. the current count.




toString
public String toString()(Code)
Returns a string identifying this latch, as well as its state. The state, in brackets, includes the String "Count =" followed by the current count. a string identifying this latch, as well as itsstate



Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final public Class<? extends Object> getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify()(Code)(Java Doc)
final public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait(long millis, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait(long millis) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.