SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
config.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_GLOBAL_CONFIG_HPP_
6#define SKYWAY_GLOBAL_CONFIG_HPP_
7
8namespace skyway {
9namespace global {
10namespace config {
11
12extern const int kDefaultTimeoutSec;
13extern const int kDefaultTimeoutMs;
14extern const int kMaxThreadNameSize;
15
16constexpr int kLocalSleepIntervalMs = 1;
17constexpr int kNetworkSleepIntervalMs = 10;
18
19} // namespace config
20} // namespace global
21} // namespace skyway
22
23#endif /* SKYWAY_GLOBAL_CONFIG_HPP_ */