QueueItemPriority EnumerationNetworkComms.Net Help
A list of priorities used to handle incoming packets

Namespace: NetworkCommsDotNet.Tools
Assembly: NetworkCommsDotNet (in NetworkCommsDotNet.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax

public enum QueueItemPriority
Members

  Member nameValueDescription
Lowest0 The System.Threading.Thread can be scheduled after threads with any other priority.
BelowNormal1 The System.Threading.Thread can be scheduled after threads with Normal priority and before those with Lowest priority.
Normal2 The System.Threading.Thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default.
AboveNormal3 The System.Threading.Thread can be scheduled after threads with Highest priority and before those with Normal priority.
Highest4 The System.Threading.Thread can be scheduled before threads with any other priority.
See Also