enum Poco::Thread::Priority

Overview

Thread priorities. Moreā€¦

#include <Thread.h>

enum Priority
{
    PRIO_LOWEST  = PRIO_LOWEST_IMPL,
    PRIO_LOW     = PRIO_LOW_IMPL,
    PRIO_NORMAL  = PRIO_NORMAL_IMPL,
    PRIO_HIGH    = PRIO_HIGH_IMPL,
    PRIO_HIGHEST = PRIO_HIGHEST_IMPL,
};

Detailed Documentation

Thread priorities.

Enum Values

PRIO_LOWEST

The lowest thread priority.

PRIO_LOW

A lower than normal thread priority.

PRIO_NORMAL

The normal thread priority.

PRIO_HIGH

A higher than normal thread priority.

PRIO_HIGHEST

The highest thread priority.