Java Sleep sleepABit(long millis)

Here you can find the source of sleepABit(long millis)

Description

sleep A Bit

License

Open Source License

Declaration

public static void sleepABit(long millis) 

Method Source Code

//package com.java2s;

public class Main {
    public static void sleepABit(long millis) {
        try {//from   w w  w.j  a  v  a2 s  . c om
            Thread.sleep(millis);
        } catch (InterruptedException e) {
        }
    }
}

Related

  1. sleep(long time)
  2. sleep(long time)
  3. sleep(long timeToSleep)
  4. sleep4Subscription()
  5. sleep_force(long timeToSleep)
  6. sleepABitMore()
  7. sleepAfterListItems()
  8. sleepAndIgnoreInterrupts(int millis)
  9. sleepAtLeast(long milliseconds)