Uses of Class
io.netty5.handler.codec.compression.Lz4Compressor
-
Packages that use Lz4Compressor Package Description io.netty5.handler.codec.compression -
-
Uses of Lz4Compressor in io.netty5.handler.codec.compression
Methods in io.netty5.handler.codec.compression that return types with arguments of type Lz4Compressor Modifier and Type Method Description static Supplier<Lz4Compressor>
Lz4Compressor. newFactory()
Creates the fastest LZ4 compressor factory with default block size (64 KB) and xxhash hashing for Java, based on Yann Collet's work available at Github.static Supplier<Lz4Compressor>
Lz4Compressor. newFactory(boolean highCompressor)
Creates a new LZ4 compressor factory with high or fast compression, default block size (64 KB) and xxhash hashing for Java, based on Yann Collet's work available at Github.static Supplier<Lz4Compressor>
Lz4Compressor. newFactory(net.jpountz.lz4.LZ4Factory factory, boolean highCompressor, int blockSize, Checksum checksum)
Creates a new customizable LZ4 compressor factory.static Supplier<Lz4Compressor>
Lz4Compressor. newFactory(net.jpountz.lz4.LZ4Factory factory, boolean highCompressor, int blockSize, Checksum checksum, int maxEncodeSize)
Creates a new customizable LZ4 compressor factory.
-