DTSPriorityClass Enum

Definition

Describes the priority of a thread in a class.

public enum class DTSPriorityClass
public enum DTSPriorityClass
type DTSPriorityClass = 
Public Enum DTSPriorityClass
Inheritance
DTSPriorityClass

Fields

DTSPC_ABOVE_NORMAL 1

The thread is scheduled after threads with Default priority and before those with Normal priority.

DTSPC_BELOW_NORMAL 3

The thread is scheduled after threads with Default, AboveNormal, and Normal priority and before those with Lowest priority.

DTSPC_DEFAULT 0

The thread is scheduled before threads with any other priority. This is the highest thread priority.

DTSPC_IDLE 4

This thread is scheduled after threads with any other priority.

DTSPC_NORMAL 2

The thread is scheduled after threads with Default and AboveNormal priority, and before those with BelowNormal and Lowest priority.

Remarks

For more information, see DTSPriorityClass.

Applies to