tags:

views:

40

answers:

1

Is there a way to get jobs that are supposed to be running/completed by now (based on schedule), but queued for some reason (such as threads are used up)?

A: 

Not out of the box. You'll have to roll your own. What you need to do is add a listener to the jobs you want to get notifications for. You'll have to implement ITriggerListener and then implement the TriggerMisfired method. Take a look at this tutorial: Lesson 7: TriggerListeners and JobListeners

TskTsk