Uses of Class
com.ning.compress.lzf.LZFChunk
-
Packages that use LZFChunk Package Description com.ning.compress.lzf Package that contains public API of the LZF codec, as well as some of the implementation (specifically parts that are designed to be overridable).com.ning.compress.lzf.parallel 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 LZFChunk Modifier and Type Field Description protected LZFChunkLZFChunk. _nextMethods in com.ning.compress.lzf that return LZFChunk Modifier and Type Method Description static LZFChunkLZFChunk. createCompressed(int origLen, byte[] encData, int encPtr, int encLen)Factory method for constructing compressed chunkstatic LZFChunkLZFChunk. createNonCompressed(byte[] plainData, int ptr, int len)Factory method for constructing compressed chunkLZFChunkChunkEncoder. encodeChunk(byte[] data, int offset, int len)Method for compressing (or not) individual chunksLZFChunkChunkEncoder. 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.LZFChunkLZFChunk. next()Methods in com.ning.compress.lzf with parameters of type LZFChunk Modifier and Type Method Description voidLZFChunk. setNext(LZFChunk next) -
Uses of LZFChunk in com.ning.compress.lzf.parallel
Fields in com.ning.compress.lzf.parallel with type parameters of type LZFChunk Modifier and Type Field Description private java.util.concurrent.Future<LZFChunk>WriteTask. lzfFutureMethods in com.ning.compress.lzf.parallel that return LZFChunk Modifier and Type Method Description LZFChunkCompressTask. call()Constructor parameters in com.ning.compress.lzf.parallel with type arguments of type LZFChunk Constructor Description WriteTask(java.io.OutputStream output, java.util.concurrent.Future<LZFChunk> lzfFuture, PLZFOutputStream caller)
-