A list of priorities used to handle incoming packets
Namespace: NetworkCommsDotNet.ToolsAssembly: NetworkCommsDotNet (in NetworkCommsDotNet.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Lowest | 0 | The System.Threading.Thread can be scheduled after threads with any other priority. | |
BelowNormal | 1 | The System.Threading.Thread can be scheduled after threads with Normal priority and before those with Lowest priority. | |
Normal | 2 | The System.Threading.Thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default. | |
AboveNormal | 3 | The System.Threading.Thread can be scheduled after threads with Highest priority and before those with Normal priority. | |
Highest | 4 | The System.Threading.Thread can be scheduled before threads with any other priority. |
See Also