module HTTPX::Plugins::ResponseCache::ResponseBodyMethods

  1. lib/httpx/plugins/response_cache.rb

Methods

Public Instance

  1. decode_chunk

Public Instance methods

decode_chunk(chunk)
[show source]
    # File lib/httpx/plugins/response_cache.rb
335 def decode_chunk(chunk)
336   return chunk if @response.cached?
337 
338   super
339 end