Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newBytesReceived (0.17 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt

              complete(null)
              return -1L
            }
    
            val newBytesReceived = bytesReceived + read
            if (contentLength != -1L && newBytesReceived > contentLength) {
              throw ProtocolException("expected $contentLength bytes but received $newBytesReceived")
            }
    
            bytesReceived = newBytesReceived
            if (codec.isResponseComplete) {
              complete(null)
            }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top