Home | History | Annotate | Download | only in tsccm

Lines Matching refs:Condition

35 import java.util.concurrent.locks.Condition;
44 * All methods assume external synchronization on the condition
52 /** The condition on which the thread is waiting. */
53 private final Condition cond;
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) {
76 throw new IllegalArgumentException("Condition must not be null.");
85 * Obtains the condition.
87 * @return the condition on which to wait, never <code>null</code>
89 public final Condition getCondition() {
127 * @return <code>true</code> if the condition was satisfied,
130 * that the condition was satisfied. Since the condition is
186 // One condition might be shared by several WaitingThread instances.