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
338 def decode_chunk(chunk)
339   return chunk if @response.cached?
340 
341   super
342 end