-
Methods Method Description com.github.luben.zstd.Zstd.compressUsingDict(byte[], byte[], byte[], int) Use compress(dst, src, dict, level) insteadcom.github.luben.zstd.Zstd.decompressUsingDict(byte[], byte[], byte[]) Use decompress(dst, src, dict) insteadcom.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.com.github.luben.zstd.ZstdOutputStream.setFinalize(boolean) If you don't rely on finalizers, use `ZstdOutputStreamNoFinalizer` instead.
-
Constructors Constructor Description com.github.luben.zstd.ZstdOutputStream(OutputStream, int, boolean, boolean) Use ZstdOutputStream() or ZstdOutputStream(level) and set the other params with the setters