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.
|
Modifier and Type | Field and Description |
---|---|
protected Uncompressor |
UncompressorOutputStream._uncompressor |
Constructor and Description |
---|
UncompressorOutputStream(Uncompressor uncomp) |
Modifier and Type | Class and Description |
---|---|
class |
GZIPUncompressor
Uncompressor implementation for uncompressing
GZIP encoded data in "push" mode, in which input is not
read using InputStream but rather pushed to
uncompressor in variable length chunks. |
Modifier and Type | Class and Description |
---|---|
class |
LZFUncompressor
Uncompressor implementation for uncompressing
LZF encoded data in "push" mode, in which input is not
read using InputStream but rather pushed to
uncompressor in variable length chunks. |
Copyright © 2014. All rights reserved.