public final class ThreadUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static void |
sleep(java.time.Duration duration)
Sleeps for a guaranteed minimum duration unless interrupted.
|
public static void sleep(java.time.Duration duration)
throws InterruptedException
This method exists because Thread.sleep(100) can sleep for 0, 70, 100 or 200ms or anything else it deems appropriate. Read
Thread.sleep(long, int)} for further interesting details.
duration - the sleep duration.InterruptedException - if interrupted.Thread.sleep(long, int)