Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for writeSynResetLater (0.34 sec)

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

            writeBytesTotal += toWrite.toLong()
          }
    
          byteCount -= toWrite.toLong()
          writer.data(outFinished && byteCount == 0L, streamId, buffer, toWrite)
        }
      }
    
      internal fun writeSynResetLater(
        streamId: Int,
        errorCode: ErrorCode,
      ) {
        writerQueue.execute("$connectionName[$streamId] writeSynReset") {
          try {
            writeSynReset(streamId, errorCode)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       */
      fun closeLater(errorCode: ErrorCode) {
        if (!closeInternal(errorCode, null)) {
          return // Already closed.
        }
        connection.writeSynResetLater(id, errorCode)
      }
    
      /** Returns true if this stream was closed. */
      private fun closeInternal(
        errorCode: ErrorCode,
        errorException: IOException?,
      ): Boolean {
        lock.assertNotHeld()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    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;
    Lokhttp3/internal/http2/Http2ExchangeCodec;
    Lokhttp3/internal/http2/Http2Reader$ContinuationSource;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top