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

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

Completed in 65 milliseconds