I have Jobs with multiple Triggers. In some cases, the Triggers will overlap. When Quartz.NET determines the overlapping Triggers need to be triggered, the IJob.Execute(IJobExecutionContext context)
method is executed for each Trigger.
Is there a way to prevent this overlap?
Thanks in advance.