Package | Description |
---|---|
java.lang |
Core Java classes
|
Modifier and Type | Method and Description |
---|---|
void |
Thread.join()
Waits for this thread to die.
|
void |
Thread.join(long timeout)
Waits for up to timeout mS for this thread to die.
|
static void |
Thread.sleep(long aMilliseconds) |
void |
Object.wait()
This is the same as calling wait(0).
|
void |
Object.wait(long timeout)
Wait until notified.
|
void |
Object.wait(long timeout,
int nanos)
Wait until notified.
|