QuartzScheduler CurrentlyExecutingJobs Property Quartz.NET API Documentation
Return a list of IJobExecutionContext objects that represent all currently executing Jobs in this Scheduler instance.

This method is not cluster aware. That is, it will only return Jobs currently executing in this Scheduler instance, not across the entire cluster.

Note that the list returned is an 'instantaneous' snap-shot, and that as soon as it's returned, the true list of executing jobs may be different.

Namespace: Quartz.Core
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

public virtual IList<IJobExecutionContext> CurrentlyExecutingJobs { get; }

Property Value

Type: IList IJobExecutionContext 

Implements

IRemotableQuartzScheduler CurrentlyExecutingJobs
See Also