You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Decoder can simply copy iterators to the data instead of decoding MsgPack. It's strange that we cannot pass these iterators to the encoder - one has to copy the data to any other container (vector<char>/char[]/etc) to send the data to the next receiver. Let's support std::pair<it_t, it_t> in encoder.
The text was updated successfully, but these errors were encountered:
Decoder can simply copy iterators to the data instead of decoding MsgPack. It's strange that we cannot pass these iterators to the encoder - one has to copy the data to any other container (
vector<char>/char[]/etc
) to send the data to the next receiver. Let's supportstd::pair<it_t, it_t>
in encoder.The text was updated successfully, but these errors were encountered: