Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for withConnectionPool (0.56 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

          } else {
            certificatePinner
          }
    
        return copy(certificatePinner = newCertificatePinner)
      }
    
      override fun withConnectionPool(connectionPool: ConnectionPool): Interceptor.Chain {
        check(exchange == null) { "connectionPool can't be adjusted in a network interceptor" }
    
        return copy(connectionPool = connectionPool)
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

          override fun Interceptor.Chain.value(): ConnectionPool = connectionPool
    
          override fun Interceptor.Chain.withOverride(value: ConnectionPool): Interceptor.Chain = withConnectionPool(value)
    
          override fun OkHttpClient.Builder.withOverride(value: ConnectionPool): OkHttpClient.Builder = connectionPool(value)
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
Back to Top