Thursday 30 October 2014

Job Listeners


Job listeners receives events related to jobs like whenever job executing, finished etc.,

public interface JobListener {
    public String getName();
    public void jobToBeExecuted(JobExecutionContext jec);
    public void jobExecutionVetoed(JobExecutionContext jec);
    public void jobWasExecuted(JobExecutionContext jec, JobExecutionException jee);
}

Prevoius                                                 Next                                                 Home

No comments:

Post a Comment