| 135 | public: |
| 136 | template <typename Input, typename Output> |
| 137 | void sendAndReceive(thread_db* tdbb, Tag tag, const Input* in, Output* out) |
| 138 | { |
| 139 | static_assert(sizeof(*in) <= sizeof(std::declval<Header>().buffer), "Buffer size too small"); |
| 140 | internalSendAndReceive(tdbb, tag, in, sizeof(*in), out, sizeof(*out)); |
| 141 | } |
| 142 | |
| 143 | template <typename Input> |
| 144 | void send(thread_db* tdbb, Tag tag, const Input* in) |
no outgoing calls
no test coverage detected