Uses of Class
java.util.zip.Deflater
| Package | Description |
|---|---|
| com.squareup.okhttp.internal | |
| java.util.zip |
-
Uses of Deflater in com.squareup.okhttp.internal
Methods in com.squareup.okhttp.internal with parameters of type Deflater Modifier and Type Method Description OutputStreamPlatform. newDeflaterOutputStream(OutputStream out, Deflater deflater, boolean syncFlush)Returns a deflater output stream that supports SYNC_FLUSH for SPDY name value blocks. -
Uses of Deflater in java.util.zip
Fields in java.util.zip declared as Deflater Modifier and Type Field Description protected DeflaterDeflaterInputStream. defprotected DeflaterDeflaterOutputStream. defThe deflater used.Constructors in java.util.zip with parameters of type Deflater Constructor Description DeflaterInputStream(InputStream in, Deflater deflater)Constructs aDeflaterInputStreamwith the givenDeflaterand an implementation-defined default internal buffer size.DeflaterInputStream(InputStream in, Deflater deflater, int bufferSize)Constructs aDeflaterInputStreamwith the givenDeflaterand given internal buffer size.DeflaterOutputStream(OutputStream os, Deflater def)Constructs a new instance with the givenDeflater.DeflaterOutputStream(OutputStream os, Deflater def, boolean syncFlush)Constructs a new instance with the givenDeflaterand flushing behavior (seeDeflaterOutputStream.flush()).DeflaterOutputStream(OutputStream os, Deflater def, int bufferSize)Constructs a new instance with the givenDeflaterand buffer size.DeflaterOutputStream(OutputStream os, Deflater def, int bufferSize, boolean syncFlush)Constructs a new instance with the givenDeflater, buffer size, and flushing behavior (seeDeflaterOutputStream.flush()).