HomeSort by relevance Sort by last modified time
    Searched refs:waitingThread (Results 1 - 2 of 2) sorted by null

  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThreadAborter.java 39 /** A simple class that can interrupt a {@link WaitingThread}. */
42 private WaitingThread waitingThread;
51 if (waitingThread != null)
52 waitingThread.interrupt();
60 * @param waitingThread The thread to interrupt when aborting.
62 public void setWaitingThread(WaitingThread waitingThread) {
63 this.waitingThread = waitingThread;
    [all...]
ConnPoolByRoute.java 85 protected Queue<WaitingThread> waitingThreads;
134 protected Queue<WaitingThread> createWaitingThreadQueue() {
135 return new LinkedList<WaitingThread>();
171 protected WaitingThread newWaitingThread(Condition cond,
173 return new WaitingThread(cond, rospl);
251 * If a {@link WaitingThread} is used to block, {@link WaitingThreadAborter#setWaitingThread(WaitingThread)}
258 * @param aborter an object which can abort a {@link WaitingThread}.
284 WaitingThread waitingThread = null
    [all...]

Completed in 208 milliseconds