HomeSort by relevance Sort by last modified time
    Searched refs:ZstdOutputStream (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-compress/src/stub/java/com/github/luben/zstd/
ZstdOutputStream.java 22 public class ZstdOutputStream extends OutputStream {
24 public ZstdOutputStream(final OutputStream outStream, int level, boolean closeFrameOnFlush,
29 public ZstdOutputStream(final OutputStream outStream, int level, boolean closeFrameOnFlush)
34 public ZstdOutputStream(final OutputStream outStream, int level) throws IOException {
38 public ZstdOutputStream(final OutputStream outStream) throws IOException {
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/
ZstdCompressorOutputStream.java 24 import com.github.luben.zstd.ZstdOutputStream;
35 private final ZstdOutputStream encOS;
38 * Wraps the given stream into a zstd-jni ZstdOutputStream.
48 this.encOS = new ZstdOutputStream(outStream, level, closeFrameOnFlush, useChecksum);
52 * Wraps the given stream into a zstd-jni ZstdOutputStream using the default value for {@code useChecksum}.
61 this.encOS = new ZstdOutputStream(outStream, level, closeFrameOnFlush);
65 * Wraps the given stream into a zstd-jni ZstdOutputStream using the default values for {@code closeFrameOnFlush}
73 this.encOS = new ZstdOutputStream(outStream, level);
77 * Wraps the given stream into a zstd-jni ZstdOutputStream using the default values for {@code level}, {@code
83 this.encOS = new ZstdOutputStream(outStream)
    [all...]

Completed in 83 milliseconds