All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jnario.lib.Sleeper Maven / Gradle / Ivy

package org.jnario.lib;

public interface Sleeper {
	
	public static final Sleeper SYSTEM_SLEEPER = new Sleeper(){
		public void sleep(long milis) throws InterruptedException {
			Thread.sleep(milis);
		}
	};
	
	public void sleep(long milis) throws InterruptedException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy