std::stop_source:: stop_requested
From cppreference.net
<
cpp
|
thread
|
stop source
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::stop_source
| Member functions | ||||
| Modifiers | ||||
| Observers | ||||
|
stop_source::stop_requested
|
||||
| Non-member functions | ||||
| Helper tags | ||||
|
bool
stop_requested
(
)
const
noexcept
;
|
(C++20以降) | |
stop_source
オブジェクトが停止状態を持ち、その状態が停止要求を受け取ったかどうかをチェックします。
パラメータ
(なし)
戻り値
true
が返されるのは、
stop_token
オブジェクトが停止状態を持ち、かつ停止要求を受け取った場合です。
false
が返されるのはそれ以外の場合です。
例
|
このセクションは不完全です
理由: 例がありません |