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

nz.ac.auckland.jobs.periodic.AbstractJob.groovy Maven / Gradle / Ivy

The newest version!
package nz.ac.auckland.jobs.periodic

/**
 * This is base interface for other jobs.
 *
 * @deprecated switch to using Job with @JobConfiguration annotation
 */
interface AbstractJob extends Job{

	/**
	 * Initial delay before first execution in seconds
	 * @return
	 */
	Long getInitialDelay()

	/**
	 * If returns true the job will not be scheduled and the onl way to stop it is to cancel it (using its Future)
	 * @return false if you don't want this job to be scheduled (usable during tests)
	 */
	Boolean isEnabled()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy