Java Sleep sleepAfterListItems()

Here you can find the source of sleepAfterListItems()

Description

sleep After List Items

License

Apache License

Declaration

private static void sleepAfterListItems() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static void sleepAfterListItems() {
        try {/*www . j a  v a  2 s .c  om*/
            Thread.sleep(2000);
        } catch (InterruptedException e1) {
            e1.printStackTrace();
        }
    }
}

Related

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