.Net Core控制台应用程序使用定时器

举报
清雨小竹 发表于 2022/09/25 03:45:19 2022/09/25
【摘要】 引用两个库: McApp.QuartzCore Pomelo.AspNetCore.TimedJob using Newtonsoft.Json;using Quartz;using Quartz.Impl;using System;using System.Collections.Specialized;using Sy...

引用两个库:

McApp.QuartzCore

Pomelo.AspNetCore.TimedJob


  
  1. using Newtonsoft.Json;
  2. using Quartz;
  3. using Quartz.Impl;
  4. using System;
  5. using System.Collections.Specialized;
  6. using System.Threading.Tasks;
  7. namespace TestDockerConsole
  8. {
  9. public class HelloJob:IJob{
  10. public Task Execute(IJobExecutionContext context) {
  11. return Console.Out.WriteLineAsync("Greetings from HelloJob!");
  12. }
  13. }
  14. class Program
  15. {
  16. static void Main(string[] args)
  17. {
  18. Console.WriteLine("Time Job Start");
  19. RunProgram().GetAwaiter().GetResult();
  20. Console.WriteLine("Hello World!");
  21. Console.Read();
  22. }
  23. private static async Task RunProgram()
  24. {
  25. try
  26. {
  27. // Grab the Scheduler instance from the Factory
  28. NameValueCollection props = new NameValueCollection
  29. {
  30. { "quartz.serializer.type", "binary" }
  31. };
  32. StdSchedulerFactory factory = new StdSchedulerFactory(props);
  33. IScheduler scheduler = await factory.GetScheduler();
  34. // 启动任务调度器
  35. await scheduler.Start();
  36. // 定义一个 Job
  37. IJobDetail job = JobBuilder.Create<HelloJob>()
  38. .WithIdentity("job1", "group1")
  39. .Build();
  40. ISimpleTrigger trigger = (ISimpleTrigger)TriggerBuilder.Create()
  41. .WithIdentity("trigger1") // 给任务一个名字
  42. .StartAt(DateTime.Now) // 设置任务开始时间
  43. .ForJob("job1", "group1") //给任务指定一个分组
  44. .WithSimpleSchedule(x => x
  45. .WithIntervalInSeconds(1) //循环的时间 1秒1次
  46. .RepeatForever())
  47. .Build();
  48. // 等待执行任务
  49. await scheduler.ScheduleJob(job, trigger);
  50. // some sleep to show what's happening
  51. //await Task.Delay(TimeSpan.FromMilliseconds(2000));
  52. }
  53. catch (SchedulerException se)
  54. {
  55. await Console.Error.WriteLineAsync(se.ToString());
  56. }
  57. }
  58. }
  59. }



文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。

原文链接:zzzili.blog.csdn.net/article/details/79276569

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。