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

AboveNormal 1

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

BelowNormal 3

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

Default 0

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

Idle 4

This thread is scheduled after threads with any other priority.

Normal 2

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

Examples

The following example shows the syntax to use when setting the PackagePriorityClass for a package using the DTSPriorityClass enumeration.

Package p = new Package();  
p.PackagePriorityClass = DTSPriorityClass.BelowNormal;  
Dim p As Package =  New Package()   
p.PackagePriorityClass = DTSPriorityClass.BelowNormal  

Remarks

The DTSPriorityClass defines the set of all possible values for a thread priority. Thread priorities specify the relative priority of one thread versus another.

Every thread has an assigned priority. Threads created within the runtime are initially assigned the Default priority, while threads created outside the runtime retain their previous priority when they enter the runtime. You can get and set the priority of a thread by accessing its Priority property, such as the PackagePriorityClass.

Threads are scheduled for execution based on their priority. The scheduling algorithm used to determine the order of thread execution varies with each operating system.

The priority of threads for this enumeration, in order of highest priority to lowest, is as follows:

  • Default

  • AboveNormal

  • Normal

  • BelowNormal

  • Idle

Applies to