@brief Returns how many body bytes are still expected for this message
| 140 | |
| 141 | /// @brief Returns how many body bytes are still expected for this message |
| 142 | [[nodiscard]] uint64_t getBodyBytesRemaining() const { return bodyBytesRemaining; } |
| 143 | |
| 144 | /// @brief Returns true once the full body has been received according to its framing |
| 145 | [[nodiscard]] bool isBodyComplete() const { return bodyComplete; } |
nothing calls this directly
no outgoing calls
no test coverage detected