Class FramedSnappyCompressorOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.compress.compressors.CompressorOutputStream
-
- org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class FramedSnappyCompressorOutputStream extends CompressorOutputStream
CompressorOutputStream for the framing Snappy format.Based on the "spec" in the version "Last revised: 2013-10-25"
- Since:
- 1.14
- See Also:
- Snappy framing format description
-
-
Constructor Summary
Constructors Constructor Description FramedSnappyCompressorOutputStream(OutputStream out)Constructs a new output stream that compresses snappy-framed-compressed data to the specified output stream.FramedSnappyCompressorOutputStream(OutputStream out, Parameters params)Constructs a new output stream that compresses snappy-framed-compressed data to the specified output stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinish()Compresses all remaining data and writes it to the stream, doesn't close the underlying stream.voidwrite(byte[] data, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
flush, nullOutputStream, write
-
-
-
-
Constructor Detail
-
FramedSnappyCompressorOutputStream
public FramedSnappyCompressorOutputStream(OutputStream out) throws IOException
Constructs a new output stream that compresses snappy-framed-compressed data to the specified output stream.- Parameters:
out- the OutputStream to which to write the compressed data- Throws:
IOException- if writing the signature fails
-
FramedSnappyCompressorOutputStream
public FramedSnappyCompressorOutputStream(OutputStream out, Parameters params) throws IOException
Constructs a new output stream that compresses snappy-framed-compressed data to the specified output stream.- Parameters:
out- the OutputStream to which to write the compressed dataparams- parameters used to fine-tune compression, in particular to balance compression ratio vs compression speed.- Throws:
IOException- if writing the signature fails
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] data, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
finish
public void finish() throws IOExceptionCompresses all remaining data and writes it to the stream, doesn't close the underlying stream.- Throws:
IOException- if an error occurs
-
-