Class PLZFOutputStream

java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.ning.compress.lzf.parallel.PLZFOutputStream
All Implemented Interfaces:
Closeable, Flushable, AutoCloseable, Channel, WritableByteChannel

public class PLZFOutputStream extends FilterOutputStream implements WritableByteChannel
Decorator OutputStream implementation that will compress output using LZF compression algorithm, given uncompressed input to write. Its counterpart is LZFInputStream; although in some ways LZFCompressingInputStream can be seen as the opposite.

This class uses a parallel implementation to make use of all available cores, modulo system load.

See Also: