List of usage examples for org.apache.commons.compress.utils FlushShieldFilterOutputStream FlushShieldFilterOutputStream
public FlushShieldFilterOutputStream(OutputStream out)
From source file:srebrinb.compress.sevenzip.LZMADecoder.java
@SuppressWarnings("resource") @Override/*from w w w. jav a 2 s .c o m*/ OutputStream encode(final OutputStream out, final Object opts) throws IOException { // NOOP as LZMAOutputStream throws an exception in flush return new FlushShieldFilterOutputStream(new LZMAOutputStream(out, getOptions(opts), false)); }