diff --git a/broker/gen/model/Tcp_settings.cpp b/broker/gen/model/Tcp_settings.cpp index ef632894..391cfb4c 100644 --- a/broker/gen/model/Tcp_settings.cpp +++ b/broker/gen/model/Tcp_settings.cpp @@ -31,7 +31,7 @@ Tcp_settings::Tcp_settings() m_Peer_liveness_timeout_msIsSet = false; m_Max_backpressure_timeout_ms = 0L; m_Max_backpressure_timeout_msIsSet = false; - + } void Tcp_settings::validate() const @@ -72,7 +72,7 @@ bool Tcp_settings::validate(std::stringstream& msg, const std::string& pathPrefi } } - + return success; } @@ -89,13 +89,13 @@ bool Tcp_settings::operator==(const Tcp_settings& rhs) const ((!nwritersIsSet() && !rhs.nwritersIsSet()) || (nwritersIsSet() && rhs.nwritersIsSet() && getNwriters() == rhs.getNwriters())) && - - + + ((!peerLivenessTimeoutMsIsSet() && !rhs.peerLivenessTimeoutMsIsSet()) || (peerLivenessTimeoutMsIsSet() && rhs.peerLivenessTimeoutMsIsSet() && getPeerLivenessTimeoutMs() == rhs.getPeerLivenessTimeoutMs())) && - - + + ((!maxBackpressureTimeoutMsIsSet() && !rhs.maxBackpressureTimeoutMsIsSet()) || (maxBackpressureTimeoutMsIsSet() && rhs.maxBackpressureTimeoutMsIsSet() && getMaxBackpressureTimeoutMs() == rhs.getMaxBackpressureTimeoutMs())) - + ; } @@ -117,7 +117,7 @@ void to_json(nlohmann::json& j, const Tcp_settings& o) j["peer_liveness_timeout_ms"] = o.m_Peer_liveness_timeout_ms; if(o.maxBackpressureTimeoutMsIsSet()) j["max_backpressure_timeout_ms"] = o.m_Max_backpressure_timeout_ms; - + } void from_json(const nlohmann::json& j, Tcp_settings& o) @@ -136,18 +136,18 @@ void from_json(const nlohmann::json& j, Tcp_settings& o) { j.at("nwriters").get_to(o.m_Nwriters); o.m_NwritersIsSet = true; - } + } if(j.find("peer_liveness_timeout_ms") != j.end()) { j.at("peer_liveness_timeout_ms").get_to(o.m_Peer_liveness_timeout_ms); o.m_Peer_liveness_timeout_msIsSet = true; - } + } if(j.find("max_backpressure_timeout_ms") != j.end()) { j.at("max_backpressure_timeout_ms").get_to(o.m_Max_backpressure_timeout_ms); o.m_Max_backpressure_timeout_msIsSet = true; - } - + } + } int64_t Tcp_settings::getSendBufferSize() const diff --git a/broker/gen/model/Tcp_settings.h b/broker/gen/model/Tcp_settings.h index 61144d44..d323c3bd 100644 --- a/broker/gen/model/Tcp_settings.h +++ b/broker/gen/model/Tcp_settings.h @@ -80,14 +80,14 @@ public: bool nwritersIsSet() const; void unsetNwriters(); /// - /// Max time (in milliseconds) a send may block with no sign of life from the writer (no BUSY heartbeat or ACK) before the connection is declared dead. Optional; the built-in default is used when unset. + /// Max time (in milliseconds) a send may block with no sign of life from the writer (no BUSY heartbeat or ACK) before the connection is declared dead. Optional; the built-in default is used when unset. /// int64_t getPeerLivenessTimeoutMs() const; void setPeerLivenessTimeoutMs(int64_t const value); bool peerLivenessTimeoutMsIsSet() const; void unsetPeer_liveness_timeout_ms(); /// - /// Hard upper bound (in milliseconds) on backpressure: if no bytes can be sent to the writer for this long the connection is declared dead even while the writer keeps heartbeating, so a wedged writer cannot block the run or its finalization. Optional; the built-in default is used when unset. + /// Hard upper bound (in milliseconds) on backpressure: if no bytes can be sent to the writer for this long the connection is declared dead even while the writer keeps heartbeating, so a wedged writer cannot block the run or its finalization. Optional; the built-in default is used when unset. /// int64_t getMaxBackpressureTimeoutMs() const; void setMaxBackpressureTimeoutMs(int64_t const value); @@ -107,7 +107,7 @@ protected: bool m_Peer_liveness_timeout_msIsSet; int64_t m_Max_backpressure_timeout_ms; bool m_Max_backpressure_timeout_msIsSet; - + }; } // namespace org::openapitools::server::model diff --git a/broker/redoc-static.html b/broker/redoc-static.html index 0bc418af..207f3324 100644 --- a/broker/redoc-static.html +++ b/broker/redoc-static.html @@ -937,7 +937,7 @@ then image might be replaced in the buffer between calling /images and /image.cb