userver: userver/engine/condition_variable_status.hpp Source File
Loading...
Searching...
No Matches
condition_variable_status.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/engine/condition_variable_status.hpp
4/// @brief @copybrief engine::CvStatus
5
6USERVER_NAMESPACE_BEGIN
7
8namespace engine {
9
10/// std::condition_variable state extended with "cancelled" state
11enum class CvStatus { kNoTimeout, kTimeout, kCancelled };
12
13} // namespace engine
14
15USERVER_NAMESPACE_END