quartz.net 入门
2021-05-18 13:30
标签:写入 div exe ica logs read tail efi 入门 1,新建个控制台项目并引入包quartz.net。 2,新建作业类 HelloJob继承自IJob 3,Main方法里写入以下代码: quartz.net 入门 标签:写入 div exe ica logs read tail efi 入门 原文地址:http://www.cnblogs.com/XM-CHC/p/7736524.html public class HelloJob : IJob
{
public void Execute(IJobExecutionContext context)
{
Console.WriteLine("你好");
}
}
static void Main(string[] args)
{
try
{
Common.Logging.LogManager.Adapter = new Common.Logging.Simple.ConsoleOutLoggerFactoryAdapter { Level = Common.Logging.LogLevel.Info };
IScheduler scheduler = StdSchedulerFactory.GetDefaultScheduler();
// and start it off
scheduler.Start();
// define the job and tie it to our HelloJob class
IJobDetail job = JobBuilder.Create
这里我们用WithCronSchedule方法来配置定时任务的时间,"0/1 * 2-12 * * ?" 代表每天2点到13点,每秒执行一次方法。