Table of Contents

Interface ISimpleTrigger

Namespace
Quartz
Assembly
Quartz.dll

A ITrigger that is used to fire a IJob at a given moment in time, and optionally repeated at a specified interval.

public interface ISimpleTrigger : ITrigger
Inherited Members

Remarks

This is a read model: to change a trigger's schedule, rebuild it with GetTriggerBuilder() and hand it to RescheduleJob(TriggerKey, ITrigger, CancellationToken).

Properties

MisfireInstruction

What the scheduler does when this trigger misses a firing.

SimpleTriggerMisfireInstruction MisfireInstruction { get; }

Property Value

SimpleTriggerMisfireInstruction
See Also

RepeatCount

The number of times the ISimpleTrigger should repeat, after which it will be automatically deleted.

int RepeatCount { get; }

Property Value

int
See Also

RepeatInterval

The time interval at which the ISimpleTrigger repeats.

TimeSpan RepeatInterval { get; }

Property Value

TimeSpan

TimesTriggered

Get the number of times the ISimpleTrigger has already fired.

int TimesTriggered { get; }

Property Value

int

See Also