ProcessPriority Enumeration
In This Topic
Specifies the priority for an executing process
Syntax
Members
Member | Value | Description |
AboveNormalPriority | 32768 | Process that has priority above NormalPriority but below HighPriority |
BelowNormalPriority | 16384 | Process that has priority above IdlePriority but below NormalPriority. |
HighPriority | 128 |
Process that performs time-critical tasks that must be executed immediately for it to run correctly
|
IdlePriority | 64 |
Process whose threads run only when the system is idle and are preempted by the threads of any process running in a higher priority class.
|
NormalPriority | 32 |
Process with no special scheduling needs (default).
|
RealtimePriority | 256 |
Process that has the highest possible priority
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ArcanaDevelopment.adTempus.Shared.ProcessPriority
See Also