Files
SilkierQuartz/sample/Jobs/HelloJobSingle.cs
2020-06-06 09:30:19 +08:00

18 lines
363 B
C#

using Quartz;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace AspNetCore31.Jobs
{
public class HelloJobSingle : IJob
{
public Task Execute(IJobExecutionContext context)
{
Console.WriteLine("Hello Single");
return Task.CompletedTask;
}
}
}