Im using Quartz.Net in a MVC application, installed with NuGet.
And have a trigger like this:
ITrigger trigger = TriggerBuilder.Create()
.WithIdentity("trigger1", "group1")
.WithCronSchedule("0 0 4 1 * ?")
.Build();
How can i add a Misfire Instruction so that if the server happens to be down at the time when the job was supposed to be triggered the event is triggered as soon as the server is up again?
And how would that be possible, does Quarts keep track of last time the event was triggered? I cannot find a database or file where this could be saved.