Table of Contents

Struct DashboardExecutionLimit

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

One group's limit as the dashboard reads it.

public readonly record struct DashboardExecutionLimit : IEquatable<DashboardExecutionLimit>
Implements
Inherited Members

Constructors

DashboardExecutionLimit(int?, ExecutionLimitScope)

One group's limit as the dashboard reads it.

public DashboardExecutionLimit(int? MaxConcurrent, ExecutionLimitScope Scope)

Parameters

MaxConcurrent int?

The limit, or null when the group is explicitly unlimited.

Scope ExecutionLimitScope

Whether the number is what one node may run or what the cluster may run.

Properties

MaxConcurrent

The limit, or null when the group is explicitly unlimited.

public int? MaxConcurrent { get; init; }

Property Value

int?

Scope

Whether the number is what one node may run or what the cluster may run.

public ExecutionLimitScope Scope { get; init; }

Property Value

ExecutionLimitScope