Inheritance: java.lang.Object
 /// <summary>
 /// Creates a new input stream with the specified decompressor and a
 /// default buffer size. </summary>
 /// <param name="in"> the input stream </param>
 /// <param name="inf"> the decompressor ("inflater") </param>
 public InflaterInputStream(InputStream @in, Inflater inf) : this(@in, inf, 512)
 {
 }
Beispiel #2
0
 internal ZipFileInflaterInputStream(ZipFile outerInstance, ZipFileInputStream zfin, Inflater inf, int size) : base(zfin, inf, size)
 {
     this.OuterInstance = outerInstance;
     this.Zfin          = zfin;
 }