DTSPriorityClass Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the priority of a thread in a class.
public enum class DTSPriorityClass
public enum DTSPriorityClass
type DTSPriorityClass =
Public Enum DTSPriorityClass
- Inheritance
-
DTSPriorityClass
Fields
Name | Value | Description |
---|---|---|
DTSPC_DEFAULT | 0 | The thread is scheduled before threads with any other priority. This is the highest thread priority. |
DTSPC_ABOVE_NORMAL | 1 | The thread is scheduled after threads with Default priority and before those with Normal priority. |
DTSPC_NORMAL | 2 | The thread is scheduled after threads with Default and AboveNormal priority, and before those with BelowNormal and Lowest priority. |
DTSPC_BELOW_NORMAL | 3 | The thread is scheduled after threads with Default, AboveNormal, and Normal priority and before those with Lowest priority. |
DTSPC_IDLE | 4 | This thread is scheduled after threads with any other priority. |
Remarks
For more information, see DTSPriorityClass.