ddt  1.0.0
ddtConstants.hpp
Go to the documentation of this file.
1 
19 #ifndef DDTCONSTANTS_HPP_
20 #define DDTCONSTANTS_HPP_
21 
22 namespace ddt {
23 
28 const int NUMERICAL_BASE = 10;
29 
33 const int HEARTBEAT_PAUSE_MS = 10;
34 
38 const int THREAD_PAUSE_MS = 100;
39 
43 const int THREAD_PAUSE_SEC = 1;
44 
48 const int WAIT_FOR_CONNECT = 3;
49 
53 const int PUBLISH_TIMEOUT = 3;
54 
58 const int REGISTRATION_TIMEOUT = 3;
59 
63 const int WAIT_FOR_CONNECTION = 10;
64 
68 const int META_DATA_LENGTH = 1024;
69 
73 const int REPLY_TIME_INFINITE = 86400;
74 
78 const int ADDITIONAL_SPACE = 1500;
79 } // namespace ddt
80 
81 #endif /* DDTCONSTANTS_HPP_ */
82 
Definition: ddtClient.hpp:39
const int HEARTBEAT_PAUSE_MS
Definition: ddtConstants.hpp:33
const int ADDITIONAL_SPACE
Definition: ddtConstants.hpp:78
const int WAIT_FOR_CONNECT
Definition: ddtConstants.hpp:48
const int NUMERICAL_BASE
Definition: ddtConstants.hpp:28
const int REGISTRATION_TIMEOUT
Definition: ddtConstants.hpp:58
const int PUBLISH_TIMEOUT
Definition: ddtConstants.hpp:53
const int META_DATA_LENGTH
Definition: ddtConstants.hpp:68
const int REPLY_TIME_INFINITE
Definition: ddtConstants.hpp:73
const int THREAD_PAUSE_SEC
Definition: ddtConstants.hpp:43
const int WAIT_FOR_CONNECTION
Definition: ddtConstants.hpp:63
const int THREAD_PAUSE_MS
Definition: ddtConstants.hpp:38