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

23 lines
478 B

  1. using Quartz;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HKCardOUT.QuartzUtil.Job
  8. {
  9. public class QuartzJob : IJob
  10. {
  11. public async Task Execute(IJobExecutionContext context)
  12. {
  13. switch (context.JobDetail.Key.Group)
  14. {
  15. default:
  16. await Task.CompletedTask;
  17. break;
  18. }
  19. }
  20. }
  21. }