You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.1 KiB
C#

6 months ago
using Microsoft.Extensions.DependencyInjection;
using Quartz;
using SlnMesnac.Quartz.Job;
using System;
using System.Threading;
6 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2024 WenJY
* CLR4.0.30319.42000
* LAPTOP-E0N2L34V
* SlnMesnac.Quartz
* 496f8d2b-70e3-4a05-ae18-a9b0fcd06b82
*
* WenJY
* wenjy@mesnac.com
* 2024-03-27 21:58:35
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.Quartz
{
public static class QuartzSetUp
{
[Obsolete]
public static void AddQuartzSetUp(this IServiceCollection services)
{
services.AddQuartz(q =>
{
q.UseMicrosoftDependencyInjectionJobFactory();
q.ScheduleJob<AutoModeJob>(trigger =>
trigger.WithCronSchedule("0 0 * * * ? *").WithIdentity("AutoModeJob", "AutoModeJobGroup")
6 months ago
);
q.ScheduleJob<InspModeJob>(trigger =>
trigger.WithCronSchedule("0 0 * * * ? *").WithIdentity("InspModeJob", "InspModeJobGroup")
);
//q.SetProperty("quartz.scheduler.instanceName", "MyScheduler");
//q.SetProperty("quartz.scheduler.instanceId", "Auto");
//q.SetProperty("quartz.scheduler.startSchedulerOnStart", "false");
6 months ago
});
services.AddQuartzHostedService(options =>
{
options.StartDelay = Timeout.InfiniteTimeSpan;
options.WaitForJobsToComplete = true;
});
6 months ago
services.AddSingleton<IScheduler>(provider => {
var provide = provider.GetRequiredService<ISchedulerFactory>().GetScheduler().Result;
provide.PauseAll();
return provide;
});
6 months ago
}
}
}