std::stop_token::stop_token
From cppreference.com
< cpp | thread | stop token
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Concurrency support library
(C++11)
(C++20)
(C++11)
(C++11)
(C++20)
(C++26)
(C++26)
(C++20)
(C++26)
(C++20)
(C++26)
(C++26)
(C++26)
(C++26)
(C++26)
(C++26)
(C++11)
(C++11)
(C++17)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++20)(C++20)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++26)
(C++26)
(C++26)
(C++11)
(C++20)
(C++11)
(C++11)(deprecated in C++20)
(C++11)(deprecated in C++20)
(C++11)
(C++11)
(C++11)(deprecated in C++26)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++26)(C++26)
(C++26)(C++26)
(C++11)
(C++20)(C++20)
(C++20)
(C++20)
(C++11)(C++11)
(C++11)(C++11)
(C++20)(C++20)
(C++20)(C++20)
(C++20)
(C++20)
std::stop_token
Member functions
stop_token::stop_token
Modifiers
Observers
Non-member functions
stop_token() noexcept;
(1)
(since C++20)
stop_token( const stop_token& other ) noexcept;
(2)
(since C++20)
stop_token( stop_token&& other ) noexcept;
(3)
(since C++20)
Constructs a new stop_token
object.
1) Constructs an empty
stop_token
with no associated stop-state.2) Copy constructor. Constructs a
stop_token
whose associated stop-state is the same as that of other.3) Move constructor. Constructs a
stop_token
whose associated stop-state is the same as that of other; other is left empty.[edit] Parameters
other
-
another
stop_token
object to construct this stop_token
object with
[edit] Postconditions
1) stop_possible() and stop_requested() are both false.
2) *this and other share the same associated stop-state and compare equal.
3) *this has other's previously associated stop-state, and other.stop_possible() is false.