Created
July 24, 2011 03:56
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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