Package com.ning.compress.lzf.parallel
Class CompressTask
- java.lang.Object
-
- com.ning.compress.lzf.parallel.CompressTask
-
-
Field Summary
Fields Modifier and Type Field Description protected BlockManager
blockManager
protected byte[]
data
private static java.lang.ThreadLocal<ChunkEncoder>
ENCODER
protected int
length
protected int
offset
-
Constructor Summary
Constructors Constructor Description CompressTask(byte[] input, int offset, int length, BlockManager blockManager)
CompressTask(byte[] input, BlockManager blockManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LZFChunk
call()
-
-
-
Field Detail
-
ENCODER
private static final java.lang.ThreadLocal<ChunkEncoder> ENCODER
-
data
protected byte[] data
-
offset
protected int offset
-
length
protected int length
-
blockManager
protected BlockManager blockManager
-
-
Constructor Detail
-
CompressTask
public CompressTask(byte[] input, int offset, int length, BlockManager blockManager)
-
CompressTask
public CompressTask(byte[] input, BlockManager blockManager)
-
-