public interface Sleeper
Thread.sleep(long) to permit better testability.| Modifier and Type | Field and Description |
|---|---|
static Sleeper |
SYSTEM_SLEEPER |
| Modifier and Type | Method and Description |
|---|---|
void |
sleep(Duration duration)
Sleeps for the specified duration of time.
|
static final Sleeper SYSTEM_SLEEPER
void sleep(Duration duration) throws java.lang.InterruptedException
duration - How long to sleep.java.lang.InterruptedException - If the thread is interrupted while sleeping.