接口的使用
org.springframework.scheduling.Trigger
使用Trigger的程序包 程序包 说明 org.springframework.scheduling General exceptions for Spring's scheduling support, independent of any specific scheduling system.org.springframework.scheduling.commonj Convenience classes for scheduling based on the CommonJ WorkManager/TimerManager facility, as supported by IBM WebSphere 6.0+ and BEA WebLogic 9.0+.org.springframework.scheduling.concurrent Scheduling convenience classes for thejava.util.concurrentandjavax.enterprise.concurrentpackages, allowing to set up a ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring context.org.springframework.scheduling.config Support package for declarative scheduling configuration, with XML schema being the primary configuration format.org.springframework.scheduling.support Generic support classes for scheduling.org.springframework.scheduling中Trigger的使用
参数类型为Trigger的org.springframework.scheduling中的方法 修饰符和类型 方法 说明 ScheduledFuture<?>TaskScheduler. schedule(Runnable task, Trigger trigger)Schedule the givenRunnable, invoking it whenever the trigger indicates a next execution time.org.springframework.scheduling.commonj中Trigger的使用
参数类型为Trigger的org.springframework.scheduling.commonj中的方法 修饰符和类型 方法 说明 ScheduledFuture<?>TimerManagerTaskScheduler. schedule(Runnable task, Trigger trigger)已过时。org.springframework.scheduling.concurrent中Trigger的使用
参数类型为Trigger的org.springframework.scheduling.concurrent中的方法 修饰符和类型 方法 说明 ScheduledFuture<?>ConcurrentTaskScheduler. schedule(Runnable task, Trigger trigger)ScheduledFuture<?>ThreadPoolTaskScheduler. schedule(Runnable task, Trigger trigger)org.springframework.scheduling.config中Trigger的使用
返回Trigger的org.springframework.scheduling.config中的方法 修饰符和类型 方法 说明 TriggerTriggerTask. getTrigger()Return the associated trigger.参数类型为Trigger的org.springframework.scheduling.config中的方法 修饰符和类型 方法 说明 voidScheduledTaskRegistrar. addTriggerTask(Runnable task, Trigger trigger)Add a Runnable task to be triggered per the givenTrigger.类型变量类型为Trigger的org.springframework.scheduling.config中的方法参数 修饰符和类型 方法 说明 voidScheduledTaskRegistrar. setTriggerTasks(Map<Runnable,Trigger> triggerTasks)Specify triggered tasks as a Map of Runnables (the tasks) and Trigger objects (typically custom implementations of theTriggerinterface).参数类型为Trigger的org.springframework.scheduling.config中的构造器 构造器 说明 TriggerTask(Runnable runnable, Trigger trigger)Create a newTriggerTask.org.springframework.scheduling.support中Trigger的使用
实现Trigger的org.springframework.scheduling.support中的类 修饰符和类型 类 说明 classCronTriggerTriggerimplementation for cron expressions.classPeriodicTriggerA trigger for periodic task execution.