Class ThreadUtils

java.lang.Object
org.apache.commons.io.ThreadUtils

public final class ThreadUtils extends Object
Helps work with threads.
Since:
2.12.0
  • Constructor Details

    • ThreadUtils

      public ThreadUtils()
  • Method Details

    • getNanosOfMilli

      private static int getNanosOfMilli(Duration duration)
    • sleep

      public static void sleep(Duration duration) throws InterruptedException
      Sleeps for a guaranteed minimum duration unless interrupted.

      This method exists because Thread.sleep(100) can sleep for 0, 70, 100 or 200ms or anything else it deems appropriate. Read Thread.sleep(long, int)} for further interesting details.

      Parameters:
      duration - the sleep duration.
      Throws:
      InterruptedException - if interrupted
      See Also: