Class: Datadog::Transport::HTTP::API::Instance
- Inherits:
-
Object
- Object
- Datadog::Transport::HTTP::API::Instance
- Defined in:
- lib/ddtrace/transport/http/api/instance.rb
Overview
An API configured with adapter and routes
Instance Attribute Summary collapse
-
#adapter ⇒ Object
readonly
Returns the value of attribute adapter.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#spec ⇒ Object
readonly
Returns the value of attribute spec.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(spec, adapter, options = {}) ⇒ Instance
constructor
A new instance of Instance.
Constructor Details
#initialize(spec, adapter, options = {}) ⇒ Instance
Returns a new instance of Instance.
12 13 14 15 16 |
# File 'lib/ddtrace/transport/http/api/instance.rb', line 12 def initialize(spec, adapter, = {}) @spec = spec @adapter = adapter @headers = .fetch(:headers, {}) end |
Instance Attribute Details
#adapter ⇒ Object (readonly)
Returns the value of attribute adapter.
7 8 9 |
# File 'lib/ddtrace/transport/http/api/instance.rb', line 7 def adapter @adapter end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
7 8 9 |
# File 'lib/ddtrace/transport/http/api/instance.rb', line 7 def headers @headers end |
#spec ⇒ Object (readonly)
Returns the value of attribute spec.
7 8 9 |
# File 'lib/ddtrace/transport/http/api/instance.rb', line 7 def spec @spec end |
Instance Method Details
#call(env) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/ddtrace/transport/http/api/instance.rb', line 18 def call(env) # Add headers to request env, unless empty. env.headers.merge!(headers) unless headers.empty? # Send request env to the adapter. adapter.call(env) end |