com.rt.storage.api.client.util.Sleeper Maven / Gradle / Ivy
package com.rt.storage.api.client.util;
/**
* Sleeper interface to use for requesting the current thread to sleep as specified in {@link
* Thread#sleep(long)}.
*
* The default implementation can be accessed at {@link #DEFAULT}. Primarily used for testing.
*
* @since 1.14
* @author Yaniv Inbar
*/
public interface Sleeper {
/**
* Causes the currently executing thread to sleep (temporarily cease execution) for the specified
* number of milliseconds as specified in {@link Thread#sleep(long)}.
*
* @param millis length of time to sleep in milliseconds
* @throws InterruptedException if any thread has interrupted the current thread
*/
void sleep(long millis) throws InterruptedException;
/** Provides the default implementation based on {@link Thread#sleep(long)}. */
Sleeper DEFAULT =
new Sleeper() {
public void sleep(long millis) throws InterruptedException {
Thread.sleep(millis);
}
};
}