I have a service that will run every X minutes. If that job takes longer than X minutes for some unforeseen reason I want to make sure that the trigger doesn\'t kick off a s
public bool Validar(IJobExecutionContext context) {
if (context.Scheduler.GetCurrentlyExecutingJobs().Any(x => x.FireInstanceId != context.FireInstanceId && x.JobDetail.Key == context.JobDetail.Key)) { return true; } else { return false; } }