xtd 0.2.0
thread_priority.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../enum.hpp"
6
8namespace xtd {
10 namespace threading {
24 enum class thread_priority {
26 lowest = 0,
30 normal = 2,
35 };
36 }
37}
38
42};
Contains enum_ and enum_ut_ keywords.
thread_priority
Specifies the scheduling priority of a system::threading::thread.
Definition thread_priority.hpp:24
@ lowest
The system::threading::thread can be scheduled after threads with any other priority.
Definition thread_priority.hpp:26
@ below_normal
The system::threading::thread can be scheduled after threads with thread_priority::normal priority an...
Definition thread_priority.hpp:28
@ above_normal
The system::threading::thread can be scheduled after threads with thread_priority::highest priority a...
Definition thread_priority.hpp:32
@ highest
The system::threading::thread can be scheduled before threads with any other priority.
Definition thread_priority.hpp:34
@ normal
The system::threading::thread can be scheduled after threads with thread_priority::above_normal prior...
Definition thread_priority.hpp:30
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
The xtd::threading namespace provides classes and interfaces that enable multithreaded programming....
Definition abandoned_mutex_exception.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38