I am using quartz-1.7.3 and i am stuck at one scenario
Here is a scenario
I have schedule one trigger for one job.
Trigger is SimpleTrigger
I took debug(breakpoint) in execute method of job.
I stop the JVM by killing it at that point
and i found status of that trigger is complete though execution was not complete (because of JVM crash)
On next startup of scheduler trigger is removed from DB.(it was considered as fired)
I want to make sure that if trigger has fired it should complete execute method.
In case of any exception i can decide to fire again or let it be completed.