mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-22 09:37:56 +00:00
18 lines
362 B
C#
18 lines
362 B
C#
using Quartz;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SampleQuartzHostedService.Jobs
|
|
{
|
|
public class HelloJob : IJob
|
|
{
|
|
public Task Execute(IJobExecutionContext context)
|
|
{
|
|
Console.WriteLine("Hello");
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|