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

au.com.agic.apptesting.utils.ScreenCapture Maven / Gradle / Ivy

package au.com.agic.apptesting.utils;

import javax.validation.constraints.NotNull;

/**
 * An interface for a screen recorder
 */
public interface ScreenCapture {

	/**
	 * Begin a screen capture
	 *
	 * @param saveDir The directory that the screen recording will be saved into
	 */
	void start(@NotNull final String saveDir);

	/**
	 * Stop a screen capture
	 */
	void stop();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy