NodeEvent Enumeration
Defines when the node history event is raised.
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)
| Member name | Description |
|---|---|
| Added | When a user adds the node to the cluster. This enumeration member represents a value of 1. |
| Available | When a node becomes available to run jobs, because of the availability policy settings or the end of user activity. This enumeration member represents a value of 8. This value is only supported for Windows HPC Server 2008 R2 with Service Pack 1 (SP1). |
| Draining | When the scheduler is in the process of removing jobs from the node. This enumeration member represents a value of 7. |
| None | Reserved. This enumeration member represents a value of 0. |
| Occupied | When a node becomes unavailable to run jobs, because of the availability policy settings or user activity. This enumeration member represents a value of 9. This value is only supported for Windows HPC Server 2008 R2 with Service Pack 1 (SP1). |
| Offline | When the node goes offline. This enumeration member represents a value of 4. |
| Online | When the node goes online. This enumeration member represents a value of 3. |
| Reachable | When the node becomes reachable. This enumeration member represents a value of 5. |
| Removed | When a user removes the node from the cluster. This enumeration member represents a value of 2. |
| UnReachable | When the node is becomes unreachable. This enumeration member represents a value of 6. |
To get node history, call the IScheduler.OpenNodeHistoryEnumerator method.
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 None = 0 const Added = 1 const Removed = 2 const Online = 3 const Offline = 4 const Reachable = 5 const Unreachable = 6 const Draining = 7 const Available = 8 const Occupied = 9
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: