Click or drag to resize

TaskPriority Enumeration

Defines the command priority of execution.

Namespace:  MediaCy.IQL.Application
Assembly:  MediaCy.IQL.Application (in MediaCy.IQL.Application.dll) Version: 3.1.0.0
Syntax
VB
Public Enumeration TaskPriority
Members
  Member nameValueDescription
DoNotRun0The command is not scheduled to be processed, it is used for display or staging for instance
LowestThreadPriority1The command will be scheduled with a low priority and its thread's priority will be the lowest
BelowNormalThreadPriority2The command will be scheduled with a low priority and its thread's priority will be below normal
NormalLow3The command will be scheduled with a low priority on a normal thread
Normal4The command will be scheduled with a normal priority on a normal thread
NormalHigh5The command will be scheduled with a high priority on a normal thread
AboveNormalThreadPriority6The command will be scheduled with a high priority and its thread's priority will be above normal
HighestThreadPriority7The command will be scheduled with a high priority and its thread's priority will be the highest
Remarks