QuartzSchedulerCurrentlyExecutingJobs Property

Quartz.NET 3.0 API Documentation
Return a list of ICancellableJobExecutionContext 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: 3.0.0
Syntax

C#
public virtual IReadOnlyCollection<IJobExecutionContext> CurrentlyExecutingJobs { get; }

Property Value

Type: IReadOnlyCollectionIJobExecutionContext

Implements

IRemotableQuartzSchedulerCurrentlyExecutingJobs
See Also

Reference