JobScheduler.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using Microsoft.Extensions.DependencyInjection;
  2. using Quartz;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EVCB_OCPP.TaskScheduler.Jobs
  9. {
  10. public static class JobScheduler
  11. {
  12. public static void AddTaskSchedulerQuartz(this IServiceCollection services)
  13. {
  14. services.AddQuartz(q => {
  15. var CheckEVSEOnlineJobKey = new JobKey("job1", "group1");
  16. q.AddJob<CheckEVSEOnlineJob>(opts => { opts.WithIdentity(CheckEVSEOnlineJobKey); });
  17. var StartTransacionReportJobKey = new JobKey("job2", "group1");
  18. q.AddJob<StartTransacionReportJob>(opts => { opts.WithIdentity(StartTransacionReportJobKey); });
  19. var StopTransacionReportJobKey = new JobKey("job3", "group1");
  20. q.AddJob<StopTransacionReportJob>(opts => { opts.WithIdentity(StopTransacionReportJobKey); });
  21. var CheckExecutionCmdJobKey = new JobKey("job4", "group1");
  22. q.AddJob<CheckExecutionCmdJob>(opts => { opts.WithIdentity(CheckExecutionCmdJobKey); });
  23. var ExecutionCmdReportJobKey = new JobKey("job5", "group1");
  24. q.AddJob<ExecutionCmdReportJob>(opts => { opts.WithIdentity(ExecutionCmdReportJobKey); });
  25. q.AddTrigger(opts =>
  26. {
  27. opts
  28. .ForJob(CheckEVSEOnlineJobKey)
  29. .WithIdentity("trigger1", "group1")
  30. .StartNow()
  31. .WithSimpleSchedule(x => x
  32. .WithIntervalInSeconds(10)
  33. .RepeatForever());
  34. });
  35. q.AddTrigger(opts =>
  36. {
  37. opts
  38. .ForJob(StartTransacionReportJobKey)
  39. .WithIdentity("trigger2", "group1")
  40. .StartNow()
  41. .WithSimpleSchedule(x => x
  42. .WithIntervalInSeconds(10)
  43. .RepeatForever());
  44. });
  45. q.AddTrigger(opts =>
  46. {
  47. opts
  48. .ForJob(StopTransacionReportJobKey)
  49. .WithIdentity("trigger3", "group1")
  50. .StartNow()
  51. .WithSimpleSchedule(x => x
  52. .WithIntervalInSeconds(10)
  53. .RepeatForever());
  54. });
  55. q.AddTrigger(opts =>
  56. {
  57. opts
  58. .ForJob(CheckExecutionCmdJobKey)
  59. .WithIdentity("trigger4", "group1")
  60. .StartNow()
  61. .WithSimpleSchedule(x => x
  62. .WithIntervalInSeconds(10)
  63. .RepeatForever());
  64. });
  65. q.AddTrigger(opts =>
  66. {
  67. opts
  68. .ForJob(ExecutionCmdReportJobKey)
  69. .WithIdentity("trigger5", "group1")
  70. .StartNow()
  71. .WithSimpleSchedule(x => x
  72. .WithIntervalInSeconds(10)
  73. .RepeatForever());
  74. });
  75. });
  76. }
  77. }
  78. }