Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for CompressionInterceptor (0.08 sec)

  1. okhttp-zstd/api/okhttp-zstd.api

    public final class okhttp3/zstd/Zstd : okhttp3/CompressionInterceptor$DecompressionAlgorithm {
    	public static final field INSTANCE Lokhttp3/zstd/Zstd;
    	public fun decompress (Lokio/BufferedSource;)Lokio/Source;
    	public fun getEncoding ()Ljava/lang/String;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Jul 31 18:34:32 UTC 2025
    - 259 bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Gzip.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import okhttp3.CompressionInterceptor.DecompressionAlgorithm
    import okio.BufferedSource
    import okio.GzipSource
    import okio.Source
    
    object Gzip : DecompressionAlgorithm {
      override val encoding: String get() = "gzip"
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Oct 07 15:15:28 UTC 2025
    - 936 bytes
    - Viewed (0)
  3. okhttp/api/jvm/okhttp.api

    }
    
    public class okhttp3/CompressionInterceptor : okhttp3/Interceptor {
    	public fun <init> ([Lokhttp3/CompressionInterceptor$DecompressionAlgorithm;)V
    	public final fun getAlgorithms ()[Lokhttp3/CompressionInterceptor$DecompressionAlgorithm;
    	public fun intercept (Lokhttp3/Interceptor$Chain;)Lokhttp3/Response;
    }
    
    public abstract interface class okhttp3/CompressionInterceptor$DecompressionAlgorithm {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.2K bytes
    - Viewed (0)
  4. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

    import okhttp3.CallEvent.ResponseHeadersEnd
    import okhttp3.CallEvent.ResponseHeadersStart
    import okhttp3.CallEvent.SecureConnectEnd
    import okhttp3.CallEvent.SecureConnectStart
    import okhttp3.CertificatePinner
    import okhttp3.CompressionInterceptor
    import okhttp3.Connection
    import okhttp3.DelegatingSSLSocket
    import okhttp3.DelegatingSSLSocketFactory
    import okhttp3.EventListener
    import okhttp3.EventRecorder
    import okhttp3.Gzip
    import okhttp3.Headers
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 19:13:52 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  5. okhttp/api/android/okhttp.api

    }
    
    public class okhttp3/CompressionInterceptor : okhttp3/Interceptor {
    	public fun <init> ([Lokhttp3/CompressionInterceptor$DecompressionAlgorithm;)V
    	public final fun getAlgorithms ()[Lokhttp3/CompressionInterceptor$DecompressionAlgorithm;
    	public fun intercept (Lokhttp3/Interceptor$Chain;)Lokhttp3/Response;
    }
    
    public abstract interface class okhttp3/CompressionInterceptor$DecompressionAlgorithm {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.3K bytes
    - Viewed (0)
  6. CHANGELOG.md

        support it. It integrates a new (unstable) [ZSTD-KMP] library, also from Square. Enable it like
        this:
    
        ```kotlin
        val client = OkHttpClient.Builder()
          .addInterceptor(CompressionInterceptor(Zstd, Gzip))
          .build()
        ```
    
     *  New: Support the `QUERY` HTTP method. You will need to set the `Request.cacheUrlOverride`
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 05 16:02:59 UTC 2025
    - 36.2K bytes
    - Viewed (2)
Back to top