Package | Description |
---|---|
com.ning.compress | |
com.ning.compress.gzip |
Package that contains optimized stream implementations for working
with GZIP: they internally use JDK provided efficient ZLIB codecs,
but add appropriate reuse to specifically improve handling of relatively
short compressed data.
|
com.ning.compress.lzf |
Package that contains public API of the LZF codec, as well as some
of implementation, specifically parts are designed to be overridable.
|
com.ning.compress.lzf.util |
Package that contains helper classes that can be used along
with standard JDK gzip implementation (
java.util.zip ). |
Modifier and Type | Field and Description |
---|---|
protected static ThreadLocal<SoftReference<BufferRecycler>> |
BufferRecycler._recyclerRef
This
ThreadLocal contains a SoftReference
to a BufferRecycler used to provide a low-cost
buffer recycling for buffers we need for encoding, decoding. |
Modifier and Type | Method and Description |
---|---|
static BufferRecycler |
BufferRecycler.instance()
Accessor to get thread-local recycler instance
|
Modifier and Type | Field and Description |
---|---|
protected BufferRecycler |
OptimizedGZIPInputStream._bufferRecycler
Object that handles details of buffer recycling
|
protected BufferRecycler |
GZIPUncompressor._recycler
Object that handles details of buffer recycling
|
Modifier and Type | Field and Description |
---|---|
protected BufferRecycler |
LZFUncompressor._recycler |
protected BufferRecycler |
ChunkEncoder._recycler |
protected BufferRecycler |
LZFInputStream._recycler
Object that handles details of buffer recycling
|
Modifier and Type | Field and Description |
---|---|
protected BufferRecycler |
LZFFileInputStream._recycler
Object that handles details of buffer recycling
|
Copyright © 2014. All rights reserved.