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
Once quinn-rs/quinn#952, quinn-rs/quinn#929, lands in a new release, we'll be able to remove the need to copy into an intermediate buffer in h3-quinn::RecvStream::poll_data() by using quinn::RecvStream::read_chunk().
Also, we'll maybe want to read multiple chunks at once into a slice of Bytes with quinn::RecvStream::read_chunks(&mut self, bufs: &mut [Bytes]).
The text was updated successfully, but these errors were encountered:
Once quinn-rs/quinn#952, quinn-rs/quinn#929, lands in a new release, we'll be able to remove the need to copy into an intermediate buffer in
h3-quinn::RecvStream::poll_data()
by usingquinn::RecvStream::read_chunk()
.Also, we'll maybe want to read multiple chunks at once into a slice of
Bytes
withquinn::RecvStream::read_chunks(&mut self, bufs: &mut [Bytes])
.The text was updated successfully, but these errors were encountered: