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

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

IList GetCurrentlyExecutingJobs()

Return Value

Type: IList

[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 JobExecutionContext- especially if you're using remoting.

See Also