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.

14 lines
510 B

2 years ago
  1. using Quartz;
  2. using System.Threading.Tasks;
  3. namespace WebApp.Jobs.Outlook
  4. {
  5. public class RunSynJob : IJob
  6. {
  7. /// <summary>
  8. /// Called by the <see cref="IScheduler"/> when a <see cref="ITrigger"/> fires that is
  9. /// associated with the <see cref="IJob"/>.
  10. /// </summary>
  11. /// <param name="context">todo: describe context parameter on Execute</param>
  12. public virtual async Task Execute(IJobExecutionContext context) => await TaskUtil.CompletedTask;
  13. }
  14. }