Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bodyIsStreaming (2.58 sec)

  1. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

              logger.log("<-- END HTTP")
            } else if (bodyHasUnknownEncoding(response.headers)) {
              logger.log("<-- END HTTP (encoded body omitted)")
            } else if (bodyIsStreaming(response)) {
              logger.log("<-- END HTTP (streaming)")
            } else {
              val source = responseBody.source()
              source.request(Long.MAX_VALUE) // Buffer the entire body.
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 09:14:38 GMT 2024
    - 11.2K bytes
    - Viewed (1)
Back to top