Java Thread Pause pause(long pause)

Here you can find the source of pause(long pause)

Description

pause

License

Open Source License

Declaration

public static void pause(long pause) 

Method Source Code

//package com.java2s;
/*/*  w w w . j  a  v  a 2s. c  o m*/
 * Copyright LWJGL. All rights reserved.
 * License terms: http://lwjgl.org/license.php
 */

public class Main {
    public static void pause(long pause) {
        try {
            Thread.sleep(pause);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

Related

  1. pause(long low, long high)
  2. pause(long milli)
  3. pause(long millis)
  4. pause(long milliseconds)
  5. pause(long nbMilliseconds)
  6. pause(long t)
  7. pauseForTime(String pauseTime)
  8. pauseln(Object obj)
  9. pauseRequests(int length)