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
In Quarkus we occasionally need to turn a Buffer into an InputStream without duplicating the contents.
Currently we use something like: new ByteBufInputStream(buff.getByteBuf()); but getByteBuf has been removed in Vert.x 5.
We need to figure out how to support such cases soon
Implementation ideas
No response
The text was updated successfully, but these errors were encountered:
Description
In Quarkus we occasionally need to turn a
Buffer
into anInputStream
without duplicating the contents.Currently we use something like:
new ByteBufInputStream(buff.getByteBuf());
butgetByteBuf
has been removed in Vert.x 5.We need to figure out how to support such cases soon
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: