userver: userver/testsuite/redis_control.hpp Source File
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
redis_control.hpp
1#pragma once
2
3#include <chrono>
4
5USERVER_NAMESPACE_BEGIN
6
7namespace testsuite {
8
9struct RedisControl {
10 std::chrono::milliseconds min_timeout_connect =
12 std::chrono::milliseconds min_timeout_single =
14 std::chrono::milliseconds min_timeout_all = std::chrono::milliseconds::zero();
15};
16
17} // namespace testsuite
18
19USERVER_NAMESPACE_END