| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.http.impl.conn.tsccm.WaitingThread
@Deprecated public class WaitingThread
Represents a thread waiting for a connection.
This class implements throw away objects. It is instantiated whenever a thread needs to wait. Instances are not re-used, except if the waiting thread experiences a spurious wake up and continues to wait.
All methods assume external synchronization on the condition passed to the constructor. Instances of this class do not synchronize access!
| Constructor Summary | |
|---|---|
| WaitingThread(Condition cond,
              RouteSpecificPool pool)Deprecated. Creates a new entry for a waiting thread. | |
| Method Summary | |
|---|---|
|  boolean | await(Date deadline)Deprecated. Blocks the calling thread. | 
|  Condition | getCondition()Deprecated. Obtains the condition. | 
|  RouteSpecificPool | getPool()Deprecated. Obtains the pool, if there is one. | 
|  Thread | getThread()Deprecated. Obtains the thread, if there is one. | 
|  void | interrupt()Deprecated. | 
|  void | wakeup()Deprecated. Wakes up the waiting thread. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public WaitingThread(Condition cond,
                     RouteSpecificPool pool)
cond - the condition for which to waitpool - the pool on which the thread will be waiting,
                  or null| Method Detail | 
|---|
public final Condition getCondition()
nullpublic final RouteSpecificPool getPool()
nullpublic final Thread getThread()
null
public boolean await(Date deadline)
              throws InterruptedException
This method assumes external synchronization.
deadline - when to time out, or null for no timeout
true if the condition was satisfied,
          false in case of a timeout.
          Typically, a call to wakeup() is used to indicate
          that the condition was satisfied. Since the condition is
          accessible outside, this cannot be guaranteed though.
InterruptedException - if the waiting thread was interruptedwakeup()public void wakeup()
This method assumes external synchronization.
public void interrupt()
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||