Table of Contents

Class AddJobRequest

Namespace
Quartz.Dashboard.Services
Assembly
Quartz.Dashboard.dll

The job to store, and what to do about what is already there.

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

Constructors

AddJobRequest(JobDetailDto, bool, bool?)

The job to store, and what to do about what is already there.

public AddJobRequest(JobDetailDto Job, bool Replace, bool? StoreNonDurableWhileAwaitingScheduling)

Parameters

Job JobDetailDto

The job's definition.

Replace bool

Whether a job already under that key may be overwritten.

StoreNonDurableWhileAwaitingScheduling bool?

Whether a non-durable job may be stored with no trigger yet, or null to leave the scheduler's own default. A non-durable job stored this way is removed again if nothing schedules it.

Properties

Job

The job's definition.

public JobDetailDto Job { get; init; }

Property Value

JobDetailDto

Replace

Whether a job already under that key may be overwritten.

public bool Replace { get; init; }

Property Value

bool

StoreNonDurableWhileAwaitingScheduling

Whether a non-durable job may be stored with no trigger yet, or null to leave the scheduler's own default. A non-durable job stored this way is removed again if nothing schedules it.

public bool? StoreNonDurableWhileAwaitingScheduling { get; init; }

Property Value

bool?