Table of Contents

Class TriggerEventDto

Namespace
Quartz.Dashboard.Hubs
Assembly
Quartz.Dashboard.dll

A trigger that fired, completed or misfired, and the node it happened on.

public sealed record TriggerEventDto : IEquatable<TriggerEventDto>
Inheritance
TriggerEventDto
Implements
Inherited Members

Constructors

TriggerEventDto(string, TriggerKeyDto, JobKeyDto?, DateTimeOffset?)

A trigger that fired, completed or misfired, and the node it happened on.

public TriggerEventDto(string SchedulerInstanceId, TriggerKeyDto TriggerKey, JobKeyDto? JobKey, DateTimeOffset? FireTimeUtc)

Parameters

SchedulerInstanceId string

The node that raised the event.

TriggerKey TriggerKeyDto

The trigger the event is about.

JobKey JobKeyDto

The job it fires, where the event knows it.

FireTimeUtc DateTimeOffset?

When it fired, where the event has a time to give.

Properties

FireTimeUtc

When it fired, where the event has a time to give.

public DateTimeOffset? FireTimeUtc { get; init; }

Property Value

DateTimeOffset?

JobKey

The job it fires, where the event knows it.

public JobKeyDto? JobKey { get; init; }

Property Value

JobKeyDto

SchedulerInstanceId

The node that raised the event.

public string SchedulerInstanceId { get; init; }

Property Value

string

TriggerKey

The trigger the event is about.

public TriggerKeyDto TriggerKey { get; init; }

Property Value

TriggerKeyDto