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

gov.nasa.pds.harvest.util.ThreadUtils Maven / Gradle / Ivy

package gov.nasa.pds.harvest.util;

public class ThreadUtils
{
    public static void sleepSec(int sec)
    {
        try
        {
            Thread.sleep(sec * 1000);
        }
        catch(InterruptedException ex)
        {
            // Ignore
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy