Show / Hide Table of Contents

Class CpuMinMaxRateLimit

A CPU rate limit based on a minimum and maximum percentage rate.

Inheritance
System.Object
CpuLimit
CpuMinMaxRateLimit
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Fs.Processes.JobObjects
Assembly: Fs.Processes.dll
Syntax
public sealed class CpuMinMaxRateLimit : CpuLimit

Constructors

| Improve this Doc View Source

CpuMinMaxRateLimit(Decimal, Decimal)

Creates an instance of CpuMinMaxRateLimit.

Declaration
public CpuMinMaxRateLimit(decimal minPercentageRate, decimal maxPercentageRate)
Parameters
Type Name Description
System.Decimal minPercentageRate

The minimum percentage of system CPU time reserved for this job.

System.Decimal maxPercentageRate

The maximum percentage of system CPU time reserved for this job.

Properties

| Improve this Doc View Source

MaximumRate

Gets the maximum percentage of CPU time reserved for this job.

Declaration
public decimal MaximumRate { get; }
Property Value
Type Description
System.Decimal
| Improve this Doc View Source

MinimumRate

Gets the minimum percentage of CPU time reserved for this job.

Declaration
public decimal MinimumRate { get; }
Property Value
Type Description
System.Decimal
  • Improve this Doc
  • View Source
Back to top Generated by DocFX