Uses of Class
com.ning.compress.lzf.LZFChunk
Packages that use LZFChunk
Package
Description
Package that contains public API of the LZF codec, as well as some
of the implementation (specifically parts that are designed to be overridable).
Package that contains parallel implementation of LZF compressor: granularity
is at chunk-level, so that each processing thread operates on a single chunk
at a time (and conversely, no chunk is "split" across threads).
-
Uses of LZFChunk in com.ning.compress.lzf
Fields in com.ning.compress.lzf declared as LZFChunkMethods in com.ning.compress.lzf that return LZFChunkModifier and TypeMethodDescriptionstatic LZFChunk
LZFChunk.createCompressed
(int origLen, byte[] encData, int encPtr, int encLen) Factory method for constructing compressed chunkstatic LZFChunk
LZFChunk.createNonCompressed
(byte[] plainData, int ptr, int len) Factory method for constructing compressed chunkChunkEncoder.encodeChunk
(byte[] data, int offset, int len) Method for compressing (or not) individual chunksChunkEncoder.encodeChunkIfCompresses
(byte[] data, int offset, int inputLen, double maxResultRatio) Method for compressing individual chunk, if (and only if) it compresses down to specified ratio or less.LZFChunk.next()
Methods in com.ning.compress.lzf with parameters of type LZFChunk -
Uses of LZFChunk in com.ning.compress.lzf.parallel
Fields in com.ning.compress.lzf.parallel with type parameters of type LZFChunkMethods in com.ning.compress.lzf.parallel that return LZFChunkConstructor parameters in com.ning.compress.lzf.parallel with type arguments of type LZFChunkModifierConstructorDescriptionWriteTask
(OutputStream output, Future<LZFChunk> lzfFuture, PLZFOutputStream caller)