1 6 7 package org.apache.beehive.netui.util.internal.concurrent; 8 9 import java.util.Date ; 10 11 148 interface Condition { 149 150 199 void await() throws InterruptedException ; 200 201 235 void awaitUninterruptibly(); 236 237 323 337 boolean await(long time, TimeUnit unit) throws InterruptedException ; 338 339 412 boolean awaitUntil(Date deadline) throws InterruptedException ; 413 414 421 void signal(); 422 423 430 void signalAll(); 431 432 } 433 | Popular Tags |