JobPriority Enumeration
Defines the priorities that you can specify for a job.
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
[GuidAttribute("784AD2AF-E429-4CA3-8B0D-355AEBC02F1C")] [ComVisibleAttribute(true)] public enum JobPriority
/** @attribute GuidAttribute("784AD2AF-E429-4CA3-8B0D-355AEBC02F1C") */
/** @attribute ComVisibleAttribute(true) */
public enum JobPriority
GuidAttribute("784AD2AF-E429-4CA3-8B0D-355AEBC02F1C") ComVisibleAttribute(true) public enum JobPriority
| Member name | Description |
|---|---|
| AboveNormal | The job has above-normal priority. This enumeration member represents a value of 3. |
| BelowNormal | The job has below-normal priority. This enumeration member represents a value of 1. |
| Highest | The job has the highest priority. This enumeration member represents a value of 4. |
| Lowest | The job has the lowest priority. This enumeration member represents a value of 0. |
| Normal | The job has normal priority. This enumeration member represents a value of 2. |
To use this enumeration in Visual Basic Scripting Edition (VBScript), you need to use the numeric values for the enumeration members or create constants that correspond to those members and set them equal to the numeric values. The following code example shows how to create and set constants for this enumeration in VBScript.
const Lowest = 0 const BelowNormal = 1 const Normal = 2 const AboveNormal = 3 const Highest = 4
Development Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012Target Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, with HPC Pack Client Utilities
Build Date:
Community Additions
ADD
Show: