Spring.Net (6) Quartz(1)

Quick Start!

 http://sourceforge.net/projects/quartznet/

spring.quartz offers a couple of classes that simplify the usage of Quartz.

Quartz.NET is an excellent open source job scheduler.

IJob : the task you would like to execute.

Trigger controls when a job is executed

IScheduler implementation that manages the overall execution of the triggers and jobs

The method ExecuteInternal is called when the trigger fires and is where you would put your business logic.

 

 

A 'plain' object (no inheritance of any infrastructure base class) ,原来plain指的是不继承任何基础类。

 

1.任务支持实现JobDetailObject接口的类,也可以通过反射支持自定义的类型。

2.job支持明细信息,包括concurrent 是否并发处理。

3.触发器,支持多种时间控制机制。

你可能感兴趣的:(spring)