public class UncompressorOutputStream extends OutputStream
Uncompressor
, to help
with inter-operability.Modifier and Type | Field and Description |
---|---|
protected Uncompressor |
_uncompressor |
Constructor and Description |
---|
UncompressorOutputStream(Uncompressor uncomp) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Call to this method will result in call to
Uncompressor.complete() , which is idempotent
(i.e. |
void |
flush() |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
protected final Uncompressor _uncompressor
public UncompressorOutputStream(Uncompressor uncomp)
public void close() throws IOException
Uncompressor.complete()
, which is idempotent
(i.e. can be called multiple times without ill effects).close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
public void flush()
flush
in interface Flushable
flush
in class OutputStream
public void write(byte[] b) throws IOException
write
in class OutputStream
IOException
public void write(byte[] b, int off, int len) throws IOException
write
in class OutputStream
IOException
public void write(int b) throws IOException
write
in class OutputStream
IOException
Copyright © 2018. All rights reserved.