一个普通的 Job 实现如下: public class Job1 : IJob { public void Execute(IJobExecutionContext context) { Console.WriteLine(DateTime.Now + ": Job1" + m); } } public class Program { static void Main(string[] args) { var props = new NameValueCollection(); //…
Quartz是为大家熟知的任务调度框架,先看看官网的介绍: ------------------------------------------------------------------------------------------------------------------------- What is the Quartz Job Scheduling Library? Quartz is a richly featured, open source job scheduling…