Java java.util.concurrent.locks Condition fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent.locks Condition fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent.locks Condition.

The text is from its open source code.

Method

booleanawait(long time, TimeUnit unit)
Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses.
voidawait()
Causes the current thread to wait until it is signalled or Thread#interrupt interrupted .
voidawaitUninterruptibly()
Causes the current thread to wait until it is signalled.
booleanawaitUntil(Date deadline)
Causes the current thread to wait until it is signalled or interrupted, or the specified deadline elapses.
voidsignal()
Wakes up one waiting thread.
voidsignalAll()
Wakes up all waiting threads.