module HTTPX::Plugins::Cache::ResponseBodyMethods

  1. lib/httpx/plugins/cache.rb

Methods

Public Instance

  1. decode_chunk

Public Instance methods

decode_chunk(chunk)
[show source]
    # File lib/httpx/plugins/cache.rb
212 def decode_chunk(chunk)
213   return chunk if @response.cached?
214 
215   super
216 end