Class: Datadog::Transport::HTTP::API::Instance

Inherits:
Object
  • Object
show all
Defined in:
lib/ddtrace/transport/http/api/instance.rb

Overview

An API configured with adapter and routes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spec, adapter, options = {}) ⇒ Instance

Returns a new instance of Instance.



13
14
15
16
17
# File 'lib/ddtrace/transport/http/api/instance.rb', line 13

def initialize(spec, adapter, options = {})
  @spec = spec
  @adapter = adapter
  @headers = options.fetch(:headers, {})
end

Instance Attribute Details

#adapterObject (readonly)

Returns the value of attribute adapter.



8
9
10
# File 'lib/ddtrace/transport/http/api/instance.rb', line 8

def adapter
  @adapter
end

#headersObject (readonly)

Returns the value of attribute headers.



8
9
10
# File 'lib/ddtrace/transport/http/api/instance.rb', line 8

def headers
  @headers
end

#specObject (readonly)

Returns the value of attribute spec.



8
9
10
# File 'lib/ddtrace/transport/http/api/instance.rb', line 8

def spec
  @spec
end

Instance Method Details

#call(env) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/ddtrace/transport/http/api/instance.rb', line 23

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

#encoderObject



19
20
21
# File 'lib/ddtrace/transport/http/api/instance.rb', line 19

def encoder
  spec.encoder
end