| 
 | Foundation 1.1.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use InterruptedException | |
| java.lang | Provides classes that are fundamental to the design of the Java programming language. | 
| java.lang.ref | Provides reference-object classes, which support a limited degree of interaction with the garbage collector. | 
| Uses of InterruptedException in java.lang | 
| Methods in java.lang that throw InterruptedException | |
| static void | Thread.sleep(long millis)Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds. | 
| static void | Thread.sleep(long millis,
      int nanos)Causes the currently executing thread to sleep (cease execution) for the specified number of milliseconds plus the specified number of nanoseconds. | 
|  void | Thread.join(long millis)Waits at most millismilliseconds for this thread to 
 die. | 
|  void | Thread.join(long millis,
     int nanos)Waits at most millismilliseconds plusnanosnanoseconds for this thread to die. | 
|  void | Thread.join()Waits for this thread to die. | 
|  void | Object.wait(long timeout)Causes current thread to wait until either another thread invokes the Object.notify()method or theObject.notifyAll()method for this object, or a 
 specified amount of time has elapsed. | 
|  void | Object.wait(long timeout,
     int nanos)Causes current thread to wait until another thread invokes the Object.notify()method or theObject.notifyAll()method for this object, or 
 some other thread interrupts the current thread, or a certain 
 amount of real time has elapsed. | 
|  void | Object.wait()Causes current thread to wait until another thread invokes the Object.notify()method or theObject.notifyAll()method for this object. | 
| abstract  int | Process.waitFor()causes the current thread to wait, if necessary, until the process represented by this Processobject has 
 terminated. | 
| Uses of InterruptedException in java.lang.ref | 
| Methods in java.lang.ref that throw InterruptedException | |
|  Reference | ReferenceQueue.remove(long timeout)Removes the next reference object in this queue, blocking until either one becomes available or the given timeout period expires. | 
|  Reference | ReferenceQueue.remove()Removes the next reference object in this queue, blocking until one becomes available. | 
| 
 | Foundation 1.1.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||