play.jobs.SimpleJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.jobs;
/**
* Base class for jobs that don't return any result
*/
public abstract class SimpleJob extends Job {
public abstract void doJob() throws Exception;
@Override public final Void doJobWithResult() throws Exception {
doJob();
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy