A Job is
a class that implements org.quartz.Job interface. This interface contains one
method “execute”.
public interface Job { public void execute(JobExecutionContext jec) throws JobExecutionException; }
Whenever a job’s trigger fires, then execute method of this job is invoked by one of the worker threads of the scheduler.
No comments:
Post a Comment