Searched defs:Condition (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DCondition.java12 * {@code Condition} factors out the {@code Object} monitor
18 * and statements, a {@code Condition} replaces the use of the Object
31 * <p>A {@code Condition} instance is intrinsically bound to a lock.
32 * To obtain a {@code Condition} instance for a particular {@link Lock}
44 * {@link Condition} instances.
48 * final Condition notFull = <b>lock.newCondition(); </b>
49 * final Condition notEmpty = <b>lock.newCondition(); </b>
89 * <p>A {@code Condition} implementation can provide behavior and semantics
97 * <p>Note that {@code Condition} instances are just normal objects and can
101 * Acquiring the monitor lock of a {@code Condition} instanc
150 public interface Condition { interface
[all...]

Completed in 52 milliseconds