KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > concurrent > locks > Condition

java.util.concurrent.locks
Interface Condition

All Known Implementing Classes:
AbstractQueuedSynchronizer.ConditionObject
See Also:
Source Code, NullPointerException, signalling, waiting, wait, ArrayBlockingQueue, newCondition(), notifyAll, notify, wait

void await()
           throws InterruptedException
See Also:
IllegalMonitorStateException, interrupted, signalAll(), signal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean await(long time,
              TimeUnit unit)
              throws InterruptedException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


long awaitNanos(long nanosTimeout)
                throws InterruptedException
See Also:
IllegalMonitorStateException, interrupted, signalAll(), signal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void awaitUninterruptibly()
See Also:
IllegalMonitorStateException, interrupted, signalAll(), signal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean awaitUntil(Date deadline)
                   throws InterruptedException
See Also:
IllegalMonitorStateException, interrupted, signalAll(), signal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void signal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void signalAll()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags