Chris
Chris

Reputation: 7611

Quartz.NET - how to detect whether a job is paused?

I'm using Quartz.NET in a Windows Service I am creating, and I'd like a way to iterate over all jobs to detect whether it is paused or not. How do I check if a job is paused? I can't find a suitable method in the JobDetail class.

Thanks

Upvotes: 5

Views: 5557

Answers (1)

Paul U
Paul U

Reputation: 681

I think you check the trigger not the job itself.

if (scheduler.GetTriggerState(triggerName, triggerGroup) == TriggerState.Paused)
{
    //paused
}

Upvotes: 15

Related Questions