Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for newBytesReceived (0.1 seconds)

  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)
            }
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Nov 05 18:28:35 GMT 2025
    - 10.5K bytes
    - Click Count (0)
Back to Top