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
SyntaxPublic Enumeration TaskPriority
Members
| Member name | Value | Description |
---|
| DoNotRun | 0 | The command is not scheduled to be processed, it is used for display or staging for instance |
| LowestThreadPriority | 1 | The command will be scheduled with a low priority and its thread's priority will be the lowest |
| BelowNormalThreadPriority | 2 | The command will be scheduled with a low priority and its thread's priority will be below normal |
| NormalLow | 3 | The command will be scheduled with a low priority on a normal thread |
| Normal | 4 | The command will be scheduled with a normal priority on a normal thread |
| NormalHigh | 5 | The command will be scheduled with a high priority on a normal thread |
| AboveNormalThreadPriority | 6 | The command will be scheduled with a high priority and its thread's priority will be above normal |
| HighestThreadPriority | 7 | The command will be scheduled with a high priority and its thread's priority will be the highest |
Remarks
See Also