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

de.thksystems.util.concurrent.ThreadUtils Maven / Gradle / Ivy

Go to download

Commons for lang, crypto, xml, dom, text, csv, reflection, annotations, parsing, ...

There is a newer version: 4.3.3
Show newest version
package de.thksystems.util.concurrent;

public class ThreadUtils {

    private ThreadUtils() {
    }

    /**
     * Calling {@link Thread#sleep(long)} by ignoring the {@link InterruptedException}.
     * 

* Use with care! */ public static void sleepWithoutException(long l) { try { Thread.sleep(l); } catch (InterruptedException e) { // IGNORE } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy