module HTTPX::Plugins::Retries::ResponseMethods

  1. lib/httpx/plugins/retries.rb

Methods

Public Instance

  1. from_partial_response

Public Instance methods

from_partial_response(response)
[show source]
    # File lib/httpx/plugins/retries.rb
189 def from_partial_response(response)
190   @status = response.status
191   @headers = response.headers
192   @body = response.body
193 end