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

tv.hd3g.jobkit.engine.Job Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package tv.hd3g.jobkit.engine;

public interface Job extends RunnableWithException {

	String getJobName();

	String getJobSpoolname();

	default int getJobPriority() {
		return 0;
	}

	default void onJobStart() {
	}

	default void onJobDone() {
	}

	default void onJobFail(final Exception e) {
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy