Skip to main content

Enum PackagePriorityClass

Namespace: Varigence.Languages.Biml

Assembly: Biml.dll

C#


public enum PackagePriorityClass

Fields

FieldsDescription
AboveNormalThe thread is scheduled after threads with Default priority and before those with Normal priority.
BelowNormalThe thread is scheduled after threads with Default, AboveNormal, and Normal priority and before those with Lowest priority.
DefaultThe thread is scheduled before threads with any other priority. This is the highest thread priority.
IdleThis thread is scheduled after threads with any other priority.
NormalThe thread is scheduled after threads with Default and AboveNormal priority, and before those with BelowNormal and Lowest priority.