Uses of Class
com.github.luben.zstd.ZstdDictCompress
Packages that use ZstdDictCompress
-
Uses of ZstdDictCompress in com.github.luben.zstd
Methods in com.github.luben.zstd with parameters of type ZstdDictCompressModifier and TypeMethodDescriptionstatic longZstd.compress(byte @NotNull [] dst, byte @NotNull [] src, @NotNull ZstdDictCompress dict) static byte @NotNull []Zstd.compress(byte @NotNull [] src, @NotNull ZstdDictCompress dict) Compresses the data in buffer 'src'static @NotNull ByteBufferZstd.compress(@NotNull ByteBuffer srcBuff, @NotNull ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static intZstd.compress(@NotNull ByteBuffer dstBuff, @NotNull ByteBuffer srcBuff, @NotNull ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressDirectByteBufferFastDict(@NotNull ByteBuffer dst, int dstOffset, int dstSize, @NotNull ByteBuffer src, int srcOffset, int srcSize, @NotNull ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressFastDict(byte @NotNull [] dst, int dstOffset, byte @NotNull [] src, int srcOffset, int length, @NotNull ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static longZstd.compressFastDict(byte @NotNull [] dst, int dstOffset, byte @NotNull [] src, int srcOffset, @NotNull ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.@NotNull ZstdCompressCtxZstdCompressCtx.loadDict(@Nullable ZstdDictCompress dict) Load compression dictionary to be used for subsequently compressed frames.static intZstd.loadFastDictCompress(long stream, @NotNull ZstdDictCompress dict) @NotNull ZstdDirectBufferCompressingStreamZstdDirectBufferCompressingStream.setDict(@NotNull ZstdDictCompress dict) ZstdDirectBufferCompressingStreamNoFinalizer.setDict(@NotNull ZstdDictCompress dict) @NotNull ZstdOutputStreamZstdOutputStream.setDict(@NotNull ZstdDictCompress dict) @NotNull ZstdOutputStreamNoFinalizerZstdOutputStreamNoFinalizer.setDict(@NotNull ZstdDictCompress dict)