Value |
Description |
INET_PRIORITY_BACKGROUND |
This priority significantly reduces the memory, processor and
network resource utilization for the server. It is typically used
with lightweight services running in the background that are
designed for few client connections. The server thread will be
assigned a lower scheduling priority and will be frequently
forced to yield execution to other threads. |
INET_PRIORITY_LOW |
This priority lowers the overall resource utilization for the
server and meters the processor utilization for the server
thread. The server thread will be assigned a lower scheduling
priority and will occasionally be forced to yield execution to
other threads. |
INET_PRIORITY_NORMAL |
The default priority which balances resource and processor
utilization. This is the priority that is initially assigned to
the server when it is started, and it is recommended that most
applications use this priority. |
INET_PRIORITY_HIGH |
This priority increases the overall resource utilization for
the server and the thread will be given higher scheduling
priority. It is not recommended that this priority be used on a
system with a single processor. |
INET_PRIORITY_CRITICAL |
This priority can significantly increase processor, memory
and network utilization. The server thread will be given higher
scheduling priority and will be more responsive to client
connection requests. It is not recommended that this priority be
used on a system with a single processor. |