Attributes
response_on_data | [W] |
Public Instance methods
response=(response)
[show source]
# File lib/httpx/adapters/faraday.rb 125 def response=(response) 126 super 127 128 return if response.is_a?(::HTTPX::ErrorResponse) 129 130 response.body.on_data = @response_on_data 131 end