Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for receiveRstStream (0.08 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt

          errorCode: ErrorCode,
        ) {
          if (pushedStream(streamId)) {
            pushResetLater(streamId, errorCode)
            return
          }
          val rstStream = removeStream(streamId)
          rstStream?.receiveRstStream(errorCode)
        }
    
        override fun settings(
          clearPrevious: Boolean,
          settings: Settings,
        ) {
          writerQueue.execute("$connectionName applyAndAckSettings") {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt

          if (inFinished) {
            this.source.finished = true
          }
          open = isOpen
          notifyAll()
        }
        if (!open) {
          connection.removeStream(id)
        }
      }
    
      fun receiveRstStream(errorCode: ErrorCode) {
        withLock {
          if (this.errorCode == null) {
            this.errorCode = errorCode
            notifyAll()
          }
        }
      }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 22.4K bytes
    - Viewed (0)
Back to top