nz.ac.auckland.jobs.periodic.QueuedPeriodicJob.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of periodic-jobs Show documentation
Show all versions of periodic-jobs Show documentation
Simple scheduler for periodic jobs. Requires Spring.
The newest version!
package nz.ac.auckland.jobs.periodic
import groovy.transform.CompileStatic
/**
* These jobs are put into single thread queue, to make sure they are never executed simultaneously.
* For example periodic database update and periodic reindexing should never run together.
*
* @deprecated use Job with @Privileged instead
*/
@CompileStatic
interface QueuedPeriodicJob extends AbstractPeriodicJob{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy