Java Doc for CountDownLatch.java in  » 6.0-JDK-Core » Collections-Jar-Zip-Logging-regex » java » util » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » Collections Jar Zip Logging regex » 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 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() { ... }
 }
 

Memory consistency effects: Actions in a thread prior to calling countDown() happen-before actions following a successful return from a corresponding await() in another thread.
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 .
public  booleanawait(long timeout, TimeUnit unit)
     Causes the current thread to wait until the latch has counted down to zero, unless the thread is , or the specified waiting time elapses.

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

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

  • The count reaches zero due to invocations of the CountDownLatch.countDown method; or
  • Some other thread the current thread; or
  • The specified waiting time elapses.

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 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.

public  voidcountDown()
     Decrements the count of the latch, releasing all waiting threads if the count reaches zero.
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 negative




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 .

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

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

  • The count reaches zero due to invocations of the CountDownLatch.countDown method; or
  • Some other thread the current thread.

If the current thread:

  • has its interrupted status set on entry to this method; or
  • is 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 , or the specified waiting time elapses.

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

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

  • The count reaches zero due to invocations of the CountDownLatch.countDown method; or
  • Some other thread the current thread; or
  • The specified waiting time elapses.

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 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 false if 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 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 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 its state



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) 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.