Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setIdleCallback (0.53 sec)

  1. docs/changelogs/upgrading_to_okhttp_4.md

          override fun lookup(hostname: String) =
              InetAddress.getAllByName(hostname).toList()
        })
        .build()
    ```
    
    SAM conversion impacts these APIs:
    
     * Authenticator
     * Dispatcher.setIdleCallback(Runnable)
     * Dns
     * EventListener.Factory
     * HttpLoggingInterceptor.Logger
     * LoggingEventListener.Factory
     * OkHttpClient.Builder.hostnameVerifier(HostnameVerifier)
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        hosts. Note that this setting is only available on Android 24+.
     *  New: HPACK compression is now dynamic. This should improve performance when
        transmitting request headers over HTTP/2.
     *  New: `Dispatcher.setIdleCallback()` can be used to signal when there are no
        calls in flight. This is useful for [testing with
        Espresso][okhttp_idling_resource].
     *  New: Upgrade to Okio 1.9.0.
    
         ```xml
         <dependency>
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun queuedCalls ()Ljava/util/List;
    	public final fun queuedCallsCount ()I
    	public final fun runningCalls ()Ljava/util/List;
    	public final fun runningCallsCount ()I
    	public final fun setIdleCallback (Ljava/lang/Runnable;)V
    	public final fun setMaxRequests (I)V
    	public final fun setMaxRequestsPerHost (I)V
    }
    
    public abstract interface class okhttp3/Dns {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
Back to top