SATSA - JSR177

Uses of Class
java.lang.InterruptedException

Packages that use InterruptedException
java.lang Provides classes that are fundamental to the Java programming language. 
 

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.
 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 the Object.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 the Object.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 the Object.notifyAll() method for this object.
 


SATSA - JSR177

Submit a comment or suggestion Version 1.0 of SATSA Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries. Copyright 1993-2004 Sun Microsystems, Inc. 901 San Antonio Road,Palo Alto, California, 94303, U.S.A. All Rights Reserved.