Class Job

java.lang.Object
com.storedobject.job.Job
Direct Known Subclasses:
CheckDelivery, ComputeConsumption, DaemonJob

public abstract class Job extends Object
A logic that extends this class is called a "Job". A Job can be scheduled to run (by invoking its execute() method) at some defined intervals in the background by creating entries in the Schedule data class. An instance is created only once and at defined time-intervals (based on the entries in the Schedule), the execute() method is invoked. See also DaemonJob.
Author:
Syam