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
Eclipse Jetty's integration of zstd-jni has a requirement to support non-direct ByteBuffers from applications and many 3rd party libraries.
But there is no equivalent non-direct option for the existing ZstdCompressCtx.compressDirectByteBufferStream() API.
Can a non-direct version be made available?
As with our other JNI integrations (tls, quic, brotli, zlib, etc), we have the ability to use either Heap or Direct ByteBuffer against the API (often a single API method that supports both).
The text was updated successfully, but these errors were encountered:
Eclipse Jetty's integration of zstd-jni has a requirement to support non-direct ByteBuffers from applications and many 3rd party libraries.
But there is no equivalent non-direct option for the existing
ZstdCompressCtx.compressDirectByteBufferStream()
API.Can a non-direct version be made available?
As with our other JNI integrations (tls, quic, brotli, zlib, etc), we have the ability to use either Heap or Direct ByteBuffer against the API (often a single API method that supports both).
The text was updated successfully, but these errors were encountered: