Struct DashboardExecutionLimit
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
MaxConcurrentint?The limit, or null when the group is explicitly unlimited.
ScopeExecutionLimitScopeWhether 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; }