Uses of Class
java.lang.InterruptedException

Packages that use InterruptedException
Package Description
com.squareup.okhttp.internal.spdy  
java.lang  
java.lang.ref  
java.util.concurrent
Utility classes commonly useful in concurrent programming.
java.util.concurrent.locks
Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.
org.apache.http.conn
The client-side connection management and handling API at the heart of what is referred to as HttpConn.
org.apache.http.impl.conn.tsccm
The implementation of a thread-safe client connection manager.
org.apache.xml.utils
Implementation of Xalan utility classes.
  • Uses of InterruptedException in com.squareup.okhttp.internal.spdy

    Methods in com.squareup.okhttp.internal.spdy that throw InterruptedException
    Modifier and Type Method Description
    long Ping.roundTripTime()
    Returns the round trip time for this ping in nanoseconds, waiting for the response to arrive if necessary.
    long Ping.roundTripTime​(long timeout, TimeUnit unit)
    Returns the round trip time for this ping in nanoseconds, or -1 if the response was cancelled, or -2 if the timeout elapsed before the round trip completed.
  • Uses of InterruptedException in java.lang

    Methods in java.lang that throw InterruptedException
    Modifier and Type Method Description
    void Thread.join()
    Blocks the current Thread (Thread.currentThread()) until the receiver finishes its execution and dies.
    void Thread.join​(long millis)
    Blocks the current Thread (Thread.currentThread()) until the receiver finishes its execution and dies or the specified timeout expires, whatever happens first.
    void Thread.join​(long millis, int nanos)
    Blocks the current Thread (Thread.currentThread()) until the receiver finishes its execution and dies or the specified timeout expires, whatever happens first.
    static void Thread.sleep​(long time)
    Causes the thread which sent this message to sleep for the given interval of time (given in milliseconds).
    static void Thread.sleep​(long millis, int nanos)
    Causes the thread which sent this message to sleep for the given interval of time (given in milliseconds and nanoseconds).
    void Object.wait()
    Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
    void Object.wait​(long millis)
    Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires.
    void Object.wait​(long millis, int nanos)
    Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires.
    abstract int Process.waitFor()
    Causes the calling thread to wait for the native process associated with this object to finish executing.
  • Uses of InterruptedException in java.lang.ref

    Methods in java.lang.ref that throw InterruptedException
    Modifier and Type Method Description
    static void FinalizerReference.finalizeAllEnqueued()
    Waits for all currently-enqueued references to be finalized.
    Reference<? extends T> ReferenceQueue.remove()
    Returns the next available reference from the queue, removing it in the process.
    Reference<? extends T> ReferenceQueue.remove​(long timeoutMillis)
    Returns the next available reference from the queue, removing it in the process.
  • Uses of InterruptedException in java.util.concurrent

    Methods in java.util.concurrent that throw InterruptedException
    Modifier and Type Method Description
    void Semaphore.acquire()
    Acquires a permit from this semaphore, blocking until one is available, or the thread is interrupted.
    void Semaphore.acquire​(int permits)
    Acquires the given number of permits from this semaphore, blocking until all are available, or the thread is interrupted.
    void CountDownLatch.await()
    Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted.
    boolean CountDownLatch.await​(long timeout, TimeUnit unit)
    Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.
    int CyclicBarrier.await()
    Waits until all parties have invoked await on this barrier.
    int CyclicBarrier.await​(long timeout, TimeUnit unit)
    Waits until all parties have invoked await on this barrier, or the specified waiting time elapses.
    int Phaser.awaitAdvanceInterruptibly​(int phase)
    Awaits the phase of this phaser to advance from the given phase value, throwing InterruptedException if interrupted while waiting, or returning immediately if the current phase is not equal to the given phase value or this phaser is terminated.
    int Phaser.awaitAdvanceInterruptibly​(int phase, long timeout, TimeUnit unit)
    Awaits the phase of this phaser to advance from the given phase value or the given timeout to elapse, throwing InterruptedException if interrupted while waiting, or returning immediately if the current phase is not equal to the given phase value or this phaser is terminated.
    boolean ExecutorService.awaitTermination​(long timeout, TimeUnit unit)
    Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first.
    boolean ForkJoinPool.awaitTermination​(long timeout, TimeUnit unit)
    Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first.
    boolean ThreadPoolExecutor.awaitTermination​(long timeout, TimeUnit unit)  
    boolean ForkJoinPool.ManagedBlocker.block()
    Possibly blocks the current thread, for example waiting for a lock or condition.
    V Exchanger.exchange​(V x)
    Waits for another thread to arrive at this exchange point (unless the current thread is interrupted), and then transfers the given object to it, receiving its object in return.
    V Exchanger.exchange​(V x, long timeout, TimeUnit unit)
    Waits for another thread to arrive at this exchange point (unless the current thread is interrupted or the specified waiting time elapses), and then transfers the given object to it, receiving its object in return.
    V ForkJoinTask.get()
    Waits if necessary for the computation to complete, and then retrieves its result.
    V ForkJoinTask.get​(long timeout, TimeUnit unit)
    Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
    V Future.get()
    Waits if necessary for the computation to complete, and then retrieves its result.
    V Future.get​(long timeout, TimeUnit unit)
    Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
    V FutureTask.get()  
    V FutureTask.get​(long timeout, TimeUnit unit)  
    <T> List<Future<T>> AbstractExecutorService.invokeAll​(Collection<? extends Callable<T>> tasks)  
    <T> List<Future<T>> AbstractExecutorService.invokeAll​(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)  
    <T> List<Future<T>> ExecutorService.invokeAll​(Collection<? extends Callable<T>> tasks)
    Executes the given tasks, returning a list of Futures holding their status and results when all complete.
    <T> List<Future<T>> ExecutorService.invokeAll​(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
    Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first.
    <T> T AbstractExecutorService.invokeAny​(Collection<? extends Callable<T>> tasks)  
    <T> T AbstractExecutorService.invokeAny​(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)  
    <T> T ExecutorService.invokeAny​(Collection<? extends Callable<T>> tasks)
    Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.
    <T> T ExecutorService.invokeAny​(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
    Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.
    static void ForkJoinPool.managedBlock​(ForkJoinPool.ManagedBlocker blocker)
    Blocks in accord with the given blocker.
    boolean ArrayBlockingQueue.offer​(E e, long timeout, TimeUnit unit)
    Inserts the specified element at the tail of this queue, waiting up to the specified wait time for space to become available if the queue is full.
    boolean BlockingDeque.offer​(E e, long timeout, TimeUnit unit)
    Inserts the specified element into the queue represented by this deque (in other words, at the tail of this deque), waiting up to the specified wait time if necessary for space to become available.
    boolean BlockingQueue.offer​(E e, long timeout, TimeUnit unit)
    Inserts the specified element into this queue, waiting up to the specified wait time if necessary for space to become available.
    boolean LinkedBlockingDeque.offer​(E e, long timeout, TimeUnit unit)  
    boolean LinkedBlockingQueue.offer​(E e, long timeout, TimeUnit unit)
    Inserts the specified element at the tail of this queue, waiting if necessary up to the specified wait time for space to become available.
    boolean SynchronousQueue.offer​(E e, long timeout, TimeUnit unit)
    Inserts the specified element into this queue, waiting if necessary up to the specified wait time for another thread to receive it.
    boolean BlockingDeque.offerFirst​(E e, long timeout, TimeUnit unit)
    Inserts the specified element at the front of this deque, waiting up to the specified wait time if necessary for space to become available.
    boolean LinkedBlockingDeque.offerFirst​(E e, long timeout, TimeUnit unit)  
    boolean BlockingDeque.offerLast​(E e, long timeout, TimeUnit unit)
    Inserts the specified element at the end of this deque, waiting up to the specified wait time if necessary for space to become available.
    boolean LinkedBlockingDeque.offerLast​(E e, long timeout, TimeUnit unit)  
    E ArrayBlockingQueue.poll​(long timeout, TimeUnit unit)  
    E BlockingDeque.poll​(long timeout, TimeUnit unit)
    Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), waiting up to the specified wait time if necessary for an element to become available.
    E BlockingQueue.poll​(long timeout, TimeUnit unit)
    Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.
    Future<V> CompletionService.poll​(long timeout, TimeUnit unit)
    Retrieves and removes the Future representing the next completed task, waiting if necessary up to the specified wait time if none are yet present.
    E DelayQueue.poll​(long timeout, TimeUnit unit)
    Retrieves and removes the head of this queue, waiting if necessary until an element with an expired delay is available on this queue, or the specified wait time expires.
    Future<V> ExecutorCompletionService.poll​(long timeout, TimeUnit unit)  
    E LinkedBlockingDeque.poll​(long timeout, TimeUnit unit)  
    E LinkedBlockingQueue.poll​(long timeout, TimeUnit unit)  
    E LinkedTransferQueue.poll​(long timeout, TimeUnit unit)  
    E PriorityBlockingQueue.poll​(long timeout, TimeUnit unit)  
    E SynchronousQueue.poll​(long timeout, TimeUnit unit)
    Retrieves and removes the head of this queue, waiting if necessary up to the specified wait time, for another thread to insert it.
    E BlockingDeque.pollFirst​(long timeout, TimeUnit unit)
    Retrieves and removes the first element of this deque, waiting up to the specified wait time if necessary for an element to become available.
    E LinkedBlockingDeque.pollFirst​(long timeout, TimeUnit unit)  
    E BlockingDeque.pollLast​(long timeout, TimeUnit unit)
    Retrieves and removes the last element of this deque, waiting up to the specified wait time if necessary for an element to become available.
    E LinkedBlockingDeque.pollLast​(long timeout, TimeUnit unit)  
    void ArrayBlockingQueue.put​(E e)
    Inserts the specified element at the tail of this queue, waiting for space to become available if the queue is full.
    void BlockingDeque.put​(E e)
    Inserts the specified element into the queue represented by this deque (in other words, at the tail of this deque), waiting if necessary for space to become available.
    void BlockingQueue.put​(E e)
    Inserts the specified element into this queue, waiting if necessary for space to become available.
    void LinkedBlockingDeque.put​(E e)  
    void LinkedBlockingQueue.put​(E e)
    Inserts the specified element at the tail of this queue, waiting if necessary for space to become available.
    void SynchronousQueue.put​(E e)
    Adds the specified element to this queue, waiting if necessary for another thread to receive it.
    void BlockingDeque.putFirst​(E e)
    Inserts the specified element at the front of this deque, waiting if necessary for space to become available.
    void LinkedBlockingDeque.putFirst​(E e)  
    void BlockingDeque.putLast​(E e)
    Inserts the specified element at the end of this deque, waiting if necessary for space to become available.
    void LinkedBlockingDeque.putLast​(E e)  
    void TimeUnit.sleep​(long timeout)
    Performs a Thread.sleep using this time unit.
    E ArrayBlockingQueue.take()  
    E BlockingDeque.take()
    Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), waiting if necessary until an element becomes available.
    E BlockingQueue.take()
    Retrieves and removes the head of this queue, waiting if necessary until an element becomes available.
    Future<V> CompletionService.take()
    Retrieves and removes the Future representing the next completed task, waiting if none are yet present.
    E DelayQueue.take()
    Retrieves and removes the head of this queue, waiting if necessary until an element with an expired delay is available on this queue.
    Future<V> ExecutorCompletionService.take()  
    E LinkedBlockingDeque.take()  
    E LinkedBlockingQueue.take()  
    E LinkedTransferQueue.take()  
    E PriorityBlockingQueue.take()  
    E SynchronousQueue.take()
    Retrieves and removes the head of this queue, waiting if necessary for another thread to insert it.
    E BlockingDeque.takeFirst()
    Retrieves and removes the first element of this deque, waiting if necessary until an element becomes available.
    E LinkedBlockingDeque.takeFirst()  
    E BlockingDeque.takeLast()
    Retrieves and removes the last element of this deque, waiting if necessary until an element becomes available.
    E LinkedBlockingDeque.takeLast()  
    void TimeUnit.timedJoin​(Thread thread, long timeout)
    Performs a timed Thread.join using this time unit.
    void TimeUnit.timedWait​(Object obj, long timeout)
    Performs a timed Object.wait using this time unit.
    void LinkedTransferQueue.transfer​(E e)
    Transfers the element to a consumer, waiting if necessary to do so.
    void TransferQueue.transfer​(E e)
    Transfers the element to a consumer, waiting if necessary to do so.
    boolean Semaphore.tryAcquire​(int permits, long timeout, TimeUnit unit)
    Acquires the given number of permits from this semaphore, if all become available within the given waiting time and the current thread has not been interrupted.
    boolean Semaphore.tryAcquire​(long timeout, TimeUnit unit)
    Acquires a permit from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted.
    boolean LinkedTransferQueue.tryTransfer​(E e, long timeout, TimeUnit unit)
    Transfers the element to a consumer if it is possible to do so before the timeout elapses.
    boolean TransferQueue.tryTransfer​(E e, long timeout, TimeUnit unit)
    Transfers the element to a consumer if it is possible to do so before the timeout elapses.
  • Uses of InterruptedException in java.util.concurrent.locks

    Methods in java.util.concurrent.locks that throw InterruptedException
    Modifier and Type Method Description
    void AbstractQueuedLongSynchronizer.acquireInterruptibly​(long arg)
    Acquires in exclusive mode, aborting if interrupted.
    void AbstractQueuedSynchronizer.acquireInterruptibly​(int arg)
    Acquires in exclusive mode, aborting if interrupted.
    void AbstractQueuedLongSynchronizer.acquireSharedInterruptibly​(long arg)
    Acquires in shared mode, aborting if interrupted.
    void AbstractQueuedSynchronizer.acquireSharedInterruptibly​(int arg)
    Acquires in shared mode, aborting if interrupted.
    void AbstractQueuedLongSynchronizer.ConditionObject.await()
    Implements interruptible condition wait.
    boolean AbstractQueuedLongSynchronizer.ConditionObject.await​(long time, TimeUnit unit)
    Implements timed condition wait.
    void AbstractQueuedSynchronizer.ConditionObject.await()
    Implements interruptible condition wait.
    boolean AbstractQueuedSynchronizer.ConditionObject.await​(long time, TimeUnit unit)
    Implements timed condition wait.
    void Condition.await()
    Causes the current thread to wait until it is signalled or interrupted.
    boolean Condition.await​(long time, TimeUnit unit)
    Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses.
    long AbstractQueuedLongSynchronizer.ConditionObject.awaitNanos​(long nanosTimeout)
    Implements timed condition wait.
    long AbstractQueuedSynchronizer.ConditionObject.awaitNanos​(long nanosTimeout)
    Implements timed condition wait.
    long Condition.awaitNanos​(long nanosTimeout)
    Causes the current thread to wait until it is signalled or interrupted, or the specified waiting time elapses.
    boolean AbstractQueuedLongSynchronizer.ConditionObject.awaitUntil​(Date deadline)
    Implements absolute timed condition wait.
    boolean AbstractQueuedSynchronizer.ConditionObject.awaitUntil​(Date deadline)
    Implements absolute timed condition wait.
    boolean Condition.awaitUntil​(Date deadline)
    Causes the current thread to wait until it is signalled or interrupted, or the specified deadline elapses.
    void Lock.lockInterruptibly()
    Acquires the lock unless the current thread is interrupted.
    void ReentrantLock.lockInterruptibly()
    Acquires the lock unless the current thread is interrupted.
    void ReentrantReadWriteLock.ReadLock.lockInterruptibly()
    Acquires the read lock unless the current thread is interrupted.
    void ReentrantReadWriteLock.WriteLock.lockInterruptibly()
    Acquires the write lock unless the current thread is interrupted.
    boolean AbstractQueuedLongSynchronizer.tryAcquireNanos​(long arg, long nanosTimeout)
    Attempts to acquire in exclusive mode, aborting if interrupted, and failing if the given timeout elapses.
    boolean AbstractQueuedSynchronizer.tryAcquireNanos​(int arg, long nanosTimeout)
    Attempts to acquire in exclusive mode, aborting if interrupted, and failing if the given timeout elapses.
    boolean AbstractQueuedLongSynchronizer.tryAcquireSharedNanos​(long arg, long nanosTimeout)
    Attempts to acquire in shared mode, aborting if interrupted, and failing if the given timeout elapses.
    boolean AbstractQueuedSynchronizer.tryAcquireSharedNanos​(int arg, long nanosTimeout)
    Attempts to acquire in shared mode, aborting if interrupted, and failing if the given timeout elapses.
    boolean Lock.tryLock​(long time, TimeUnit unit)
    Acquires the lock if it is free within the given waiting time and the current thread has not been interrupted.
    boolean ReentrantLock.tryLock​(long timeout, TimeUnit unit)
    Acquires the lock if it is not held by another thread within the given waiting time and the current thread has not been interrupted.
    boolean ReentrantReadWriteLock.ReadLock.tryLock​(long timeout, TimeUnit unit)
    Acquires the read lock if the write lock is not held by another thread within the given waiting time and the current thread has not been interrupted.
    boolean ReentrantReadWriteLock.WriteLock.tryLock​(long timeout, TimeUnit unit)
    Acquires the write lock if it is not held by another thread within the given waiting time and the current thread has not been interrupted.
  • Uses of InterruptedException in org.apache.http.conn

    Methods in org.apache.http.conn that throw InterruptedException
    Modifier and Type Method Description
    ManagedClientConnection ClientConnectionRequest.getConnection​(long timeout, TimeUnit tunit)
    Obtains a connection within a given time.
  • Uses of InterruptedException in org.apache.http.impl.conn.tsccm

    Methods in org.apache.http.impl.conn.tsccm that throw InterruptedException
    Modifier and Type Method Description
    boolean WaitingThread.await​(Date deadline)
    Blocks the calling thread.
    BasicPoolEntry AbstractConnPool.getEntry​(HttpRoute route, Object state, long timeout, TimeUnit tunit)
    Obtains a pool entry with a connection within the given timeout.
    protected BasicPoolEntry ConnPoolByRoute.getEntryBlocking​(HttpRoute route, Object state, long timeout, TimeUnit tunit, WaitingThreadAborter aborter)
    Obtains a pool entry with a connection within the given timeout.
    BasicPoolEntry PoolEntryRequest.getPoolEntry​(long timeout, TimeUnit tunit)
    Obtains a pool entry with a connection within the given timeout.
  • Uses of InterruptedException in org.apache.xml.utils

    Methods in org.apache.xml.utils that throw InterruptedException
    Modifier and Type Method Description
    void ThreadControllerWrapper.ThreadController.waitThread​(Thread worker, Runnable task)
    Wait until the task is completed on the worker thread.
    static void ThreadControllerWrapper.waitThread​(Thread worker, Runnable task)