Skip to content

Instantly share code, notes, and snippets.

@Jire
Created July 24, 2011 03:56
Show Gist options
  • Save Jire/1102215 to your computer and use it in GitHub Desktop.
Save Jire/1102215 to your computer and use it in GitHub Desktop.
The interface to be implemented by classes which perform business logic and desire the ability to be scheduled by a scheduler and to be maintained by the environment.
package us.ironbase.job;
/**
* The interface to be implemented by classes which perform business logic
* and desire the ability to be scheduled by a {@link Scheduler} and to be
* maintained by the environment.
*
* @author Thomas Nappo
*/
public interface Job {
/**
* Called when the job is executed.
*/
public void execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment