|
PenProfile 2.x | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use InterruptedException | |
|---|---|
| com.livescribe.ext.util | Contains miscellaneous helper utilities, including a logging helper, collections classes, and a few threading primitives. |
| java.lang | Provides classes that are fundamental to the Java programming language. |
| Uses of InterruptedException in com.livescribe.ext.util |
|---|
| Methods in com.livescribe.ext.util that throw InterruptedException | |
|---|---|
void |
Lock.acquireLock()
Tries to acquire the lock. |
boolean |
Lock.acquireLock(long timeout)
Tries to acquire the lock. |
void |
Latch.waitLatch()
Waits for the latch to be set. |
boolean |
Latch.waitLatch(long timeout)
Waits for the latch to be set. |
| Uses of InterruptedException in java.lang |
|---|
| Methods in java.lang that throw InterruptedException | |
|---|---|
void |
Thread.join()
Waits for this thread to die. |
static void |
Thread.sleep(long millis)
Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds. |
void |
Object.wait()
Causes current thread to wait until another thread invokes the Object.notify() method or the
Object.notifyAll() method for this object. |
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. |
|
PenProfile 2.x | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||