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

com.daredayo.util.Sleep Maven / Gradle / Ivy

package com.daredayo.util;

@SuppressWarnings("javadoc")
public class Sleep {
	
	public static void sleepIgnoreInterrupt(long millis){
		try {
			Thread.sleep(millis);
		} catch (InterruptedException e) {
		}		
	}
	
	public static void sleepIgnoreInterrupt(long millis , int nano){
		try {
			Thread.sleep(millis,nano);
		} catch (InterruptedException e) {
		}		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy