0

I have created a list of job which is executing as per there schedule time but what i need to do if job schedule time is changed so how the scheduled job's firing time will get changed?

Thanks in advance.

jww
  • 97,681
  • 90
  • 411
  • 885
user1301587
  • 455
  • 4
  • 11
  • 23

2 Answers2

0

You will need to reschedule the job with a new trigger that has the new fire times you want. It's not possible to update a trigger's fire times. How to do this depends on the version of Quartz.Net you're running, as the API has changed significantly between V1 and V2

jvilalta
  • 6,679
  • 1
  • 28
  • 36
0

You will need to reschedule the job with a new trigger that has the new fire times you want. It's not possible to update a trigger's fire times. How to do this depends on the version of Quartz.Net you're running, as the API has changed significantly between V1 and V2