DTSPriorityClass Enumeration

Describes the priority of a thread in a class.

命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

語法

'宣告
Public Enumeration DTSPriorityClass
public enum DTSPriorityClass
public enum class DTSPriorityClass
public enum DTSPriorityClass
public enum DTSPriorityClass

Members

Member name Description
AboveNormal The thread is scheduled after threads with Default priority and before those with Normal priority.
BelowNormal The thread is scheduled after threads with Default, AboveNormal, and Normal priority and before those with Lowest priority.
Default The thread is scheduled before threads with any other priority. This is the highest thread priority.
Idle This thread is scheduled after threads with any other priority.
Normal The thread is scheduled after threads with Default and AboveNormal priority, and before those with BelowNormal and Lowest priority.

備註

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

範例

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

平台

開發平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

目標平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

請參閱

參考

Microsoft.SqlServer.Dts.Runtime Namespace