Uses of Interface
com.ning.compress.DataHandler
-
Packages that use DataHandler Package Description com.ning.compress.gzip Package that contains optimized stream implementations for working with GZIP.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). -
-
Uses of DataHandler in com.ning.compress.gzip
Fields in com.ning.compress.gzip declared as DataHandler Modifier and Type Field Description protected DataHandler
GZIPUncompressor. _handler
Handler that will receive uncompressed data.Constructors in com.ning.compress.gzip with parameters of type DataHandler Constructor Description GZIPUncompressor(DataHandler h)
GZIPUncompressor(DataHandler h, int inputChunkLength)
GZIPUncompressor(DataHandler h, int inputChunkLength, BufferRecycler bufferRecycler, GZIPRecycler gzipRecycler)
-
Uses of DataHandler in com.ning.compress.lzf
Fields in com.ning.compress.lzf declared as DataHandler Modifier and Type Field Description protected DataHandler
LZFUncompressor. _handler
Handler that will receive uncompressed data.Constructors in com.ning.compress.lzf with parameters of type DataHandler Constructor Description LZFUncompressor(DataHandler handler)
LZFUncompressor(DataHandler handler, BufferRecycler bufferRecycler)
LZFUncompressor(DataHandler handler, ChunkDecoder dec)
LZFUncompressor(DataHandler handler, ChunkDecoder dec, BufferRecycler bufferRecycler)
-