LoggingTriggerHistoryPlugin MembersQuartz.NET API Documentation

The LoggingTriggerHistoryPlugin type exposes the following members.

Constructors

  NameDescription
Public methodLoggingTriggerHistoryPlugin
Initializes a new instance of the LoggingTriggerHistoryPlugin class
Top
Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitialize
Called during creation of the IScheduler in order to give the ISchedulerPlugin a chance to Initialize.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodShutdown
Called in order to inform the ISchedulerPlugin that it should free up all of it's resources because the scheduler is shutting down.
Public methodStart
Called when the associated IScheduler is started, in order to let the plug-in know it can now make calls into the scheduler if it needs to.
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Public methodTriggerComplete
Called by the IScheduler when a Trigger has fired, it's associated JobDetail has been executed, and it's Triggered(ICalendar) method has been called.
Public methodTriggerFired
Called by the IScheduler when a Trigger has fired, and it's associated JobDetail is about to be executed.

It is called before the VetoJobExecution(Trigger, JobExecutionContext) method of this interface.

Public methodTriggerMisfired
Called by the IScheduler when a Trigger has misfired.

Consideration should be given to how much time is spent in this method, as it will affect all triggers that are misfiring. If you have lots of triggers misfiring at once, it could be an issue it this method does a lot.

Public methodVetoJobExecution
Called by the IScheduler when a Trigger has fired, and it's associated JobDetail is about to be executed.

It is called after the TriggerFired(Trigger, JobExecutionContext) method of this interface.

Top
Properties

  NameDescription
Public propertyLog
Logger instance to use. Defaults to common logging.
Public propertyName
Get the name of the ITriggerListener.
Public propertyTriggerCompleteMessage
Get or set the message that is printed upon the completion of a trigger's firing.
Public propertyTriggerFiredMessage
Get or set the message that is printed upon a trigger's firing.
Public propertyTriggerMisfiredMessage
Get or set the message that is printed upon a trigger's mis-firing.
Top
See Also