IScheduler GetCurrentlyExecutingJobs Method Quartz.NET API Documentation
Return a list of IJobExecutionContext objects that represent all currently executing Jobs in this Scheduler instance.

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

IList<IJobExecutionContext> GetCurrentlyExecutingJobs()

Return Value

Type: IList IJobExecutionContext 

[Missing <returns> documentation for "M:Quartz.IScheduler.GetCurrentlyExecutingJobs"]

Remarks

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. Also please read the doc associated with IJobExecutionContext- especially if you're using remoting.

See Also