Class: Faraday::Adapter
- Inherits:
-
Middleware
- Object
- Middleware
- Faraday::Adapter
- Extended by:
- Parallelism, AutoloadHelper
- Defined in:
- lib/faraday/adapter.rb,
lib/faraday/autoload.rb,
lib/faraday/adapter/rack.rb,
lib/faraday/adapter/test.rb,
lib/faraday/adapter/excon.rb,
lib/faraday/adapter/patron.rb,
lib/faraday/adapter/em_http.rb,
lib/faraday/adapter/net_http.rb,
lib/faraday/adapter/typhoeus.rb,
lib/faraday/adapter/httpclient.rb,
lib/faraday/adapter/em_synchrony.rb,
lib/faraday/adapter/net_http_persistent.rb,
lib/faraday/adapter/em_synchrony/parallel_manager.rb
Overview
Public: This is a base class for all Faraday adapters. Adapters are responsible for fulfilling a Faraday request.
Direct Known Subclasses
EMHttp, EMSynchrony, Excon, HTTPClient, NetHttp, Patron, Rack, Test, Typhoeus
Defined Under Namespace
Modules: Parallelism Classes: EMHttp, EMSynchrony, Excon, HTTPClient, NetHttp, NetHttpPersistent, Patron, Rack, Test, Typhoeus
Constant Summary collapse
- CONTENT_LENGTH =
'Content-Length'.freeze
Instance Attribute Summary
Attributes included from Parallelism
Instance Method Summary collapse
Methods included from Parallelism
Methods included from AutoloadHelper
all_loaded_constants, autoload_all, load_autoloaded_constants
Methods inherited from Middleware
dependency, inherited, #initialize, loaded?, new
Methods included from MiddlewareRegistry
#fetch_middleware, #load_middleware, #lookup_middleware, #middleware_mutex, #register_middleware
Constructor Details
This class inherits a constructor from Faraday::Middleware
Instance Method Details
#call(env) ⇒ Object
33 34 35 |
# File 'lib/faraday/adapter.rb', line 33 def call(env) env.clear_body if env.needs_body? end |
#save_response(env, status, body, headers = nil) ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/faraday/adapter.rb', line 37 def save_response(env, status, body, headers = nil) env.status = status env.body = body env.response_headers = Utils::Headers.new.tap do |response_headers| response_headers.update headers unless headers.nil? yield(response_headers) if block_given? end end |