synchronized (obj) {
while (<condition does not hold> and <timeout not exceeded>) {
long timeoutMillis = ... ; // recompute timeout values
int nanos = ... ;
obj.wait(timeoutMillis, nanos);
}
... // Perform action appropriate to condition
header 1 | header 2 |
---|---|
cell 1 | cell 2 |
cell 3 | cell 4 |