Uses of Class
com.github.luben.zstd.ZstdDictCompress
Packages that use ZstdDictCompress
-
Uses of ZstdDictCompress in com.github.luben.zstd
Fields in com.github.luben.zstd declared as ZstdDictCompressModifier and TypeFieldDescriptionprivate ZstdDictCompressZstdCompressCtx.compression_dictprivate ZstdDictCompressZstdDirectBufferCompressingStreamNoFinalizer.fastDictMethods in com.github.luben.zstd with parameters of type ZstdDictCompressModifier and TypeMethodDescriptionstatic longZstd.compress(byte[] dst, byte[] src, ZstdDictCompress dict) static byte[]Zstd.compress(byte[] src, ZstdDictCompress dict) Compresses the data in buffer 'src'static ByteBufferZstd.compress(ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static intZstd.compress(ByteBuffer dstBuff, ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressDirectByteBufferFastDict(ByteBuffer dst, int dstOffset, int dstSize, ByteBuffer src, int srcOffset, int srcSize, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressFastDict(byte[] dst, int dstOffset, byte[] src, int srcOffset, int length, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressFastDict(byte[] dst, int dstOffset, byte[] src, int srcOffset, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.private longZstdDirectBufferCompressingStreamNoFinalizer.initCStreamWithFastDict(long ctx, ZstdDictCompress dict) private longZstdCompressCtx.loadCDictFast0(long ptr, ZstdDictCompress dict) ZstdCompressCtx.loadDict(ZstdDictCompress dict) Load compression dictionary to be used for subsequently compressed frames.static intZstd.loadFastDictCompress(long stream, ZstdDictCompress dict) ZstdDirectBufferCompressingStream.setDict(ZstdDictCompress dict) ZstdDirectBufferCompressingStreamNoFinalizer.setDict(ZstdDictCompress dict) ZstdOutputStream.setDict(ZstdDictCompress dict) ZstdOutputStreamNoFinalizer.setDict(ZstdDictCompress dict)