We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b2beb commit be68cd9Copy full SHA for be68cd9
src/amongoc/wire/message.hpp
@@ -231,6 +231,8 @@ class any_message {
231
decltype(auto) visit_content(auto&& fn) const { return std::visit(mlib_fwd(fn), content()); }
232
233
std::int32_t opcode() const noexcept;
234
+ std::int32_t request_id() const noexcept { return _req_id; }
235
+ std::int32_t response_to() const noexcept { return _resp_to; }
236
237
vector<asio::const_buffer> buffers(mlib::allocator<> a) const;
238
0 commit comments