Class AddJobRequest
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
JobJobDetailDtoThe job's definition.
ReplaceboolWhether a job already under that key may be overwritten.
StoreNonDurableWhileAwaitingSchedulingbool?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
Replace
Whether a job already under that key may be overwritten.
public bool Replace { get; init; }
Property Value
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?