Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for ping_interval (1.04 sec)

  1. internal/config/notify/legacy.go

    		},
    		config.KV{
    			Key:   target.NATSTLSHandshakeFirst,
    			Value: config.FormatBool(cfg.TLSHandshakeFirst),
    		},
    		config.KV{
    			Key:   target.NATSPingInterval,
    			Value: strconv.FormatInt(cfg.PingInterval, 10),
    		},
    		config.KV{
    			Key:   target.NATSQueueDir,
    			Value: cfg.QueueDir,
    		},
    		config.KV{
    			Key:   target.NATSQueueLimit,
    			Value: strconv.Itoa(int(cfg.QueueLimit)),
    		},
    		config.KV{
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Apr 27 04:30:57 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. okhttp/api/android/okhttp.api

    	public final fun networkInterceptors ()Ljava/util/List;
    	public final fun pingInterval (JLjava/util/concurrent/TimeUnit;)Lokhttp3/OkHttpClient$Builder;
    	public final fun pingInterval (Ljava/time/Duration;)Lokhttp3/OkHttpClient$Builder;
    	public final fun pingInterval-LRDsOJo (J)Lokhttp3/OkHttpClient$Builder;
    	public final fun protocols (Ljava/util/List;)Lokhttp3/OkHttpClient$Builder;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.3K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

          .isEqualTo(1)
      }
    
      @Test
      fun pingsTransmitted() {
        // Ping every 500 ms, starting at 500 ms.
        client =
          client
            .newBuilder()
            .pingInterval(Duration.ofMillis(500))
            .build()
    
        // Delay the response to give 1 ping enough time to be sent and replied to.
        server.enqueue(
          MockResponse
            .Builder()
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 67.4K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  Fix: Don't drop a call to `EventListener.callEnd()` when the response body is consumed inside an
        interceptor.
    
    
    ## Version 3.10.0
    
    _2018-02-24_
    
     *  **The pingInterval() feature now aggressively checks connectivity for web
        sockets and HTTP/2 connections.**
    
        Previously if you configured a ping interval that would cause OkHttp to send
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top