mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-22 09:37:56 +00:00
111 lines
4.2 KiB
C#
111 lines
4.2 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Threading.Tasks;
|
||
using SilkierQuartz.Example.Jobs;
|
||
using Microsoft.AspNetCore.Builder;
|
||
using Microsoft.AspNetCore.Hosting;
|
||
using Microsoft.Extensions.Configuration;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using Microsoft.Extensions.Hosting;
|
||
using Microsoft.Extensions.Options;
|
||
using Quartz;
|
||
|
||
namespace SilkierQuartz.Example
|
||
{
|
||
public class Startup
|
||
{
|
||
public Startup(IConfiguration configuration)
|
||
{
|
||
Configuration = configuration;
|
||
}
|
||
|
||
public IConfiguration Configuration { get; }
|
||
|
||
// This method gets called by the runtime. Use this method to add services to the container.
|
||
public void ConfigureServices(IServiceCollection services)
|
||
{
|
||
services.AddRazorPages();
|
||
services.AddSilkierQuartz();
|
||
services.AddOptions();
|
||
services.Configure<AppSettings>(Configuration);
|
||
services.Configure<InjectProperty>(options => { options.WriteText = "This is inject string"; });
|
||
#pragma warning disable CS0618 // 类型或成员已过时
|
||
services.AddQuartzJob<HelloJob>()
|
||
.AddQuartzJob<InjectSampleJob>()
|
||
.AddQuartzJob<HelloJobSingle>()
|
||
.AddQuartzJob<InjectSampleJobSingle>();
|
||
#pragma warning restore CS0618 // 类型或成员已过时
|
||
}
|
||
|
||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||
{
|
||
if (env.IsDevelopment())
|
||
{
|
||
app.UseDeveloperExceptionPage();
|
||
}
|
||
else
|
||
{
|
||
app.UseExceptionHandler("/Error");
|
||
}
|
||
|
||
app.UseStaticFiles();
|
||
app.UseRouting();
|
||
app.UseAuthorization();
|
||
app.UseSilkierQuartz(
|
||
new SilkierQuartzOptions()
|
||
{
|
||
VirtualPathRoot = "/SilkierQuartz",
|
||
UseLocalTime = true,
|
||
DefaultDateFormat = "yyyy-MM-dd",
|
||
DefaultTimeFormat = "HH:mm:ss",
|
||
CronExpressionOptions = new CronExpressionDescriptor.Options()
|
||
{
|
||
DayOfWeekStartIndexZero = false //Quartz uses 1-7 as the range
|
||
}
|
||
}
|
||
);
|
||
app.UseEndpoints(endpoints =>
|
||
{
|
||
endpoints.MapRazorPages();
|
||
});
|
||
//How to compatible old code to SilkierQuartz
|
||
//将旧的原来的规划Job的代码进行移植兼容的示例
|
||
app.SchedulerJobs();
|
||
|
||
|
||
#region 不使用 SilkierQuartzAttribe 属性的进行注册和使用的IJob,这里通过UseQuartzJob的IJob必须在 ConfigureServices进行AddQuartzJob
|
||
|
||
#pragma warning disable CS0618 // 类型或成员已过时
|
||
app.UseQuartzJob<HelloJobSingle>(TriggerBuilder.Create().WithSimpleSchedule(x => x.WithIntervalInSeconds(1).RepeatForever()))
|
||
.UseQuartzJob<InjectSampleJobSingle>(() =>
|
||
{
|
||
return TriggerBuilder.Create()
|
||
.WithSimpleSchedule(x => x.WithIntervalInSeconds(1).RepeatForever());
|
||
});
|
||
|
||
app.UseQuartzJob<HelloJob>(new List<TriggerBuilder>
|
||
{
|
||
TriggerBuilder.Create()
|
||
.WithSimpleSchedule(x => x.WithIntervalInSeconds(1).RepeatForever()),
|
||
TriggerBuilder.Create()
|
||
.WithSimpleSchedule(x => x.WithIntervalInSeconds(2).RepeatForever()),
|
||
//Add a sample that uses 1-7 for dow
|
||
TriggerBuilder.Create()
|
||
.WithCronSchedule("0 0 2 ? * 7 *"),
|
||
});
|
||
|
||
app.UseQuartzJob<InjectSampleJob>(() =>
|
||
{
|
||
var result = new List<TriggerBuilder>();
|
||
result.Add(TriggerBuilder.Create()
|
||
.WithSimpleSchedule(x => x.WithIntervalInSeconds(10).RepeatForever()));
|
||
return result;
|
||
});
|
||
#pragma warning restore CS0618 // 类型或成员已过时
|
||
#endregion
|
||
}
|
||
}
|
||
}
|