| Method and Description |
|---|
| com.github.luben.zstd.Zstd.compressUsingDict(byte[], byte[], byte[], int)
Use compress(dst, src, dict, level) instead
|
| com.github.luben.zstd.Zstd.decompressUsingDict(byte[], byte[], byte[])
Use decompress(dst, src, dict) instead
|
| com.github.luben.zstd.ZstdOutputStream.setFinalize(boolean)
If you don't rely on finalizers, use `ZstdOutputStreamNoFinalizer` instead.
|
| com.github.luben.zstd.ZstdInputStream.setFinalize(boolean)
If you don't rely on finalizers, use `ZstdInputStreamNoFinalizer` instead, instances of
`ZstdInputStream` will always try to close/release in the finalizer.
|
| Constructor and Description |
|---|
| com.github.luben.zstd.ZstdOutputStream(OutputStream, int, boolean)
Use ZstdOutputStream() or ZstdOutputStream(level) and set the other params with the setters
|
| com.github.luben.zstd.ZstdOutputStream(OutputStream, int, boolean, boolean)
Use ZstdOutputStream() or ZstdOutputStream(level) and set the other params with the setters
|