IJobListener Interface

Quartz.NET 3.0 API Documentation
The interface to be implemented by classes that want to be informed when a IJobDetail executes. In general, applications that use a IScheduler will not have use for this mechanism.

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

C#
public interface IJobListener

The IJobListener type exposes the following members.

Properties

  NameDescription
Public propertyName
Get the name of the IJobListener.
Top
Methods

  NameDescription
Public methodJobExecutionVetoed
Called by the IScheduler when a IJobDetail was about to be executed (an associated ITrigger has occurred), but a ITriggerListener vetoed it's execution.
Public methodJobToBeExecuted
Called by the IScheduler when a IJobDetail is about to be executed (an associated ITrigger has occurred).

This method will not be invoked if the execution of the Job was vetoed by a ITriggerListener.

Public methodJobWasExecuted
Called by the IScheduler after a IJobDetail has been executed, and be for the associated IOperableTrigger's Triggered(ICalendar) method has been called.
Top
See Also

Reference