Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sendDegradedPingLater (0.11 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       */
      internal inner class StreamTimeout : AsyncTimeout() {
        override fun timedOut() {
          closeLater(ErrorCode.CANCEL)
          connection.sendDegradedPingLater()
        }
    
        override fun newTimeoutException(cause: IOException?): IOException {
          return SocketTimeoutException("timeout").apply {
            if (cause != null) {
              initCause(cause)
            }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

       * handshakes will be required.
       *
       * The deadline is currently hardcoded. We may make this configurable in the future!
       */
      internal fun sendDegradedPingLater() {
        this.withLock {
          if (degradedPongsReceived < degradedPingsSent) return // Already awaiting a degraded pong.
          degradedPingsSent++
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    Lokhttp3/internal/http2/Http2Connection$pushHeadersLater$1;
    Lokhttp3/internal/http2/Http2Connection$pushRequestLater$2;
    Lokhttp3/internal/http2/Http2Connection$pushResetLater$1;
    Lokhttp3/internal/http2/Http2Connection$sendDegradedPingLater$2;
    Lokhttp3/internal/http2/Http2Connection$writeSynResetLater$1;
    Lokhttp3/internal/http2/Http2Connection$writeWindowUpdateLater$1;
    Lokhttp3/internal/http2/Http2Connection;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top