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

kz.greetgo.scheduling.Job Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package kz.greetgo.scheduling;

/**
 * Job of task
 */
public interface Job {
  /**
   * Making job
   *
   * @throws Throwable throws if task completes with error
   */
  void doWork() throws Throwable;

  /**
   * Returns task information to understand what this task is and where it placed is. It is used in error messages.
   *
   * @return Task information
   */
  String infoForError();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy