Table of Contents

Struct MisfiredTriggerBatch

Namespace
Quartz.Impl.AdoJobStore
Assembly
Quartz.dll
public readonly record struct MisfiredTriggerBatch : IEquatable<MisfiredTriggerBatch>
Implements
Inherited Members

Constructors

MisfiredTriggerBatch(List<IOperableTrigger>, bool)

public MisfiredTriggerBatch(List<IOperableTrigger> Triggers, bool HasMore)

Parameters

Triggers List<IOperableTrigger>

The misfired triggers, ordered by next fire time then descending priority.

HasMore bool

Whether more misfired triggers were left behind by the row limit, meaning recovery should run again promptly rather than waiting out the misfire handler's normal interval.

Properties

HasMore

Whether more misfired triggers were left behind by the row limit, meaning recovery should run again promptly rather than waiting out the misfire handler's normal interval.

public bool HasMore { get; init; }

Property Value

bool

Triggers

The misfired triggers, ordered by next fire time then descending priority.

public List<IOperableTrigger> Triggers { get; init; }

Property Value

List<IOperableTrigger>