Erixonich commented on code in PR #7080:
URL: https://github.com/apache/ignite-3/pull/7080#discussion_r2573634649
##########
modules/platforms/cpp/ignite/client/ignite_client_configuration.h:
##########
@@ -187,6 +192,28 @@ class ignite_client_configuration {
m_heartbeat_interval = heartbeat_interval;
}
+ /**
+ * Gets the operation timeout, in milliseconds. Default is 0 (no timeout).
+ *
+ * An "operation" is a single client request to the server. Some public
API calls may involve multiple operations,
+ * in which case the operation timeout is applied to each individual
network call.
+ *
+ * @return Operation timeout, in milliseconds.
+ */
+ [[nodiscard]] std::chrono::milliseconds get_operation_timeout() const {
return m_operation_timeout; }
+
+ /**
+ * Sets the operation timeout.
+ */
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]