ISchedulerListener Interface

Quartz.NET 3.0 API Documentation
The interface to be implemented by classes that want to be informed of major IScheduler events.

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

C#
public interface ISchedulerListener

The ISchedulerListener type exposes the following members.

Methods

  NameDescription
Public methodJobAdded
Called by the IScheduler when a IJobDetail has been added.
Public methodJobDeleted
Called by the IScheduler when a IJobDetail has been deleted.
Public methodJobInterrupted
Called by the IScheduler when a IJobDetail has been interrupted.
Public methodJobPaused
Called by the IScheduler when a IJobDetail has been paused.
Public methodJobResumed
Called by the IScheduler when a IJobDetail has been un-paused.
Public methodJobScheduled
Called by the IScheduler when a IJobDetail is scheduled.
Public methodJobsPaused
Called by the IScheduler when a group of IJobDetails has been paused.

If all groups were 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 IJobDetail has been un-paused.
Public methodJobUnscheduled
Called by the IScheduler when a IJobDetail is unscheduled.
Public methodSchedulerError
Called by the IScheduler when a serious error has occurred within the scheduler - such as repeated failures in the IJobStore, or the inability to instantiate a IJob instance when its ITrigger has fired.
Public methodSchedulerInStandbyMode
Called by the IScheduler to inform the listener that it has move to standby mode.
Public methodSchedulerShutdown
Called by the IScheduler to inform the listener that it has Shutdown.
Public methodSchedulerShuttingdown
Called by the IScheduler to inform the listener that it has begun the shutdown sequence.
Public methodSchedulerStarted
Called by the IScheduler to inform the listener that it has started.
Public methodSchedulerStarting
Called by the IScheduler to inform the listener that it is starting.
Public methodSchedulingDataCleared
Called by the IScheduler to inform the listener that all jobs, triggers and calendars were deleted.
Public methodTriggerFinalized
Called by the IScheduler when a ITrigger has reached the condition in which it will never fire again.
Public methodTriggerPaused
Called by the IScheduler a ITriggers has been paused.
Public methodTriggerResumed
Called by the IScheduler when a ITrigger has been un-paused.
Public methodTriggersPaused
Called by the IScheduler a group of ITriggers has been paused.
Public methodTriggersResumed
Called by the IScheduler when a group of ITriggers has been un-paused.
Top
See Also

Reference