21 #ifndef HAZELCAST_ClientProperties
22 #define HAZELCAST_ClientProperties
24 #include "hazelcast/util/HazelcastDll.h"
28 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
30 #pragma warning(disable: 4251) //for dll export
46 std::string getName()
const;
48 std::string getValue()
const;
50 int getInteger()
const;
54 bool getBoolean()
const;
56 std::string getString()
const;
93 static const std::string PROP_HEARTBEAT_TIMEOUT_DEFAULT;
102 static const std::string PROP_HEARTBEAT_INTERVAL_DEFAULT;
114 static const std::string PROP_REQUEST_RETRY_COUNT_DEFAULT;
126 static const std::string PROP_REQUEST_RETRY_WAIT_TIME_DEFAULT;
137 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
141 #endif //HAZELCAST_ClientProperties
static const std::string PROP_REQUEST_RETRY_COUNT
Client will retry requests which either inherently retryable(idempotent client) or ClientNetworkConfi...
Definition: ClientProperties.h:113
static const std::string PROP_HEARTBEAT_TIMEOUT
Client will be sending heartbeat messages to members and this is the timeout.
Definition: ClientProperties.h:92
static const std::string PROP_HEARTBEAT_INTERVAL
Time interval in seconds between heartbeats to nodes from client.
Definition: ClientProperties.h:101
A client property is a configuration for hazelcast client.
Definition: ClientProperties.h:42
Client Properties is an internal class.
Definition: ClientProperties.h:71
static const std::string PROP_REQUEST_RETRY_WAIT_TIME
Client will retry requests which either inherently retryable(idempotent client) or ClientNetworkConfi...
Definition: ClientProperties.h:125
HazelcastClient configuration class.
Definition: ClientConfig.h:47