ISchedulerListener MembersQuartz.NET API Documentation

The ISchedulerListener type exposes the following members.

Methods

  NameDescription
Public methodJobScheduled
Called by the IScheduler when a JobDetail is scheduled.
Public methodJobsPaused
Called by the IScheduler when a JobDetail or group of JobDetails has been paused.

If a group was paused, then the parameter will be null. If all jobs were paused, then both parameters will be null.

Public methodJobsResumed
Called by the IScheduler when a JobDetail or group of JobDetails has been un-paused.

If a group was resumed, then the parameter will be null. If all jobs were paused, then both parameters will be null.

Public methodJobUnscheduled
Called by the IScheduler when a JobDetail is unscheduled.
Public methodSchedulerError
Called by the IScheduler when a serious error has occured within the scheduler - such as repeated failures in the IJobStore, or the inability to instantiate a IJob instance when its Trigger has fired.

The ErrorCode property of the given SchedulerException can be used to determine more specific information about the type of error that was encountered.

Public methodSchedulerShutdown
Called by the IScheduler to inform the listener that it has Shutdown.
Public methodTriggerFinalized
Called by the IScheduler when a Trigger has reached the condition in which it will never fire again.
Public methodTriggersPaused
Called by the IScheduler when a Trigger or group of Triggers has been paused.

If a group was paused, then the parameter will be null.

Public methodTriggersResumed
Called by the IScheduler when a Trigger or group of Triggers has been un-paused.

If a group was resumed, then the parameter will be null.

Top
See Also