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

com.robotium.solo.Sleeper Maven / Gradle / Ivy

There is a newer version: 5.6.3
Show newest version
package com.robotium.solo;

class Sleeper {

	private int pauseDuration;
	private int miniPauseDuration;

	private Sleeper() {

	}

	/**
	 * Constructs this object.
	 *
	 * @param pauseDuration pause duration used in {@code sleep}
	 * @param miniPauseDuration pause duration used in {@code sleepMini}
	 */

	public Sleeper(int pauseDuration, int miniPauseDuration) {
		this.pauseDuration = pauseDuration;
		this.miniPauseDuration = miniPauseDuration;
	}

	/**
	 * Sleeps the current thread for the pause length.
	 */

	public void sleep() {
        sleep(pauseDuration);
	}


	/**
	 * Sleeps the current thread for the mini pause length.
	 */

	public void sleepMini() {
        sleep(miniPauseDuration);
	}


	/**
	 * Sleeps the current thread for time milliseconds.
	 *
	 * @param time the length of the sleep in milliseconds
	 */

	public void sleep(int time) {
		try {
			Thread.sleep(time);
		} catch (InterruptedException ignored) {}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy