1 2 18 19 22 package org.quartz.core; 23 24 import org.quartz.Scheduler; 25 import org.quartz.SchedulerConfigException; 26 import org.quartz.SchedulerException; 27 28 44 public interface JobRunShellFactory { 45 46 53 54 63 void initialize(Scheduler scheduler, SchedulingContext schedCtxt) 64 throws SchedulerConfigException; 65 66 72 JobRunShell borrowJobRunShell() throws SchedulerException; 73 74 80 void returnJobRunShell(JobRunShell jobRunShell); 81 82 } | Popular Tags |