Uses of Class
net.jpountz.lz4.LZ4Compressor
Packages that use LZ4Compressor
-
Uses of LZ4Compressor in net.jpountz.lz4
Methods in net.jpountz.lz4 that return LZ4CompressorModifier and TypeMethodDescriptionLZ4Factory.fastCompressor()Returns a blazing fastLZ4Compressor.LZ4Factory.highCompressor()Returns aLZ4Compressorwhich requires more memory thanLZ4Factory.fastCompressor()and is slower but compresses more efficiently.LZ4Factory.highCompressor(int compressionLevel) Returns aLZ4Compressorwhich requires more memory thanLZ4Factory.fastCompressor()and is slower but compresses more efficiently.Constructors in net.jpountz.lz4 with parameters of type LZ4CompressorModifierConstructorDescriptionLZ4BlockOutputStream(OutputStream out, int blockSize, LZ4Compressor compressor) Creates a new instance which checks stream integrity usingStreamingXXHash32and doesn't sync flush.LZ4BlockOutputStream(OutputStream out, int blockSize, LZ4Compressor compressor, Checksum checksum, boolean syncFlush) Creates a newOutputStreamwith configurable block size.LZ4CompressorWithLength(LZ4Compressor compressor) Creates a new compressor that includes the length of the original decompressed data in the output compressed data.LZ4FrameOutputStream(OutputStream out, LZ4FrameOutputStream.BLOCKSIZE blockSize, long knownSize, LZ4Compressor compressor, XXHash32 checksum, LZ4FrameOutputStream.FLG.Bits... bits) Creates a newOutputStreamthat will compress data using the specified instances ofLZ4CompressorandXXHash32.