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

play.jobs.SimpleJob Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
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