| Package | Description |
|---|---|
| java.lang |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| Modifier and Type | Method and Description |
|---|---|
void |
Object.wait()
Causes the 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 the 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 the 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. |
Copyright © 2014 API Design. All Rights Reserved.