Method | Description | |
---|---|---|
AuditTriggerListener ( ) : System | ||
TriggerComplete ( ITrigger trigger, IJobExecutionContext context, SchedulerInstruction triggerInstructionCode ) : void |
Called by the IScheduler when a ITrigger has fired, it's associated IJobDetail has been executed, and it's IOperableTrigger.Triggered method has been called.
|
|
TriggerFired ( ITrigger trigger, IJobExecutionContext context ) : void |
Called by the Scheduler when a ITrigger has fired, and it's associated JobDetail is about to be executed.
|
|
TriggerMisfired ( ITrigger trigger ) : void |
Called by the Scheduler when a ITrigger has misfired.
|
|
VetoJobExecution ( ITrigger trigger, IJobExecutionContext context ) : bool |
If the implementation vetos the execution (via returning true, the job's execute method will not be called. AuditTriggerListener implementation does not veto execution.
|
Method | Description | |
---|---|---|
GetAuditLog ( ITrigger trigger, string action, IJobExecutionContext context = null ) : |
public TriggerComplete ( ITrigger trigger, IJobExecutionContext context, SchedulerInstruction triggerInstructionCode ) : void | ||
trigger | ITrigger | |
context | IJobExecutionContext | |
triggerInstructionCode | SchedulerInstruction | |
return | void |
public TriggerFired ( ITrigger trigger, IJobExecutionContext context ) : void | ||
trigger | ITrigger | |
context | IJobExecutionContext | |
return | void |
public TriggerMisfired ( ITrigger trigger ) : void | ||
trigger | ITrigger | |
return | void |
public VetoJobExecution ( ITrigger trigger, IJobExecutionContext context ) : bool | ||
trigger | ITrigger | |
context | IJobExecutionContext | |
return | bool |