module HTTPX::Plugins::InternalTelemetry::PoolMethods

  1. lib/httpx/plugins/internal_telemetry.rb

Methods

Public Class

  1. included

Public Instance

  1. checkin_connection
  2. checkout_connection

Public Class methods

included(klass)
[show source]
    # File lib/httpx/plugins/internal_telemetry.rb
135 def self.included(klass)
136   klass.prepend Loggable
137   klass.prepend TrackTimeMethods
138   super
139 end

Public Instance methods

checkin_connection(connection)
[show source]
    # File lib/httpx/plugins/internal_telemetry.rb
147 def checkin_connection(connection)
148   super.tap do
149     meter_elapsed_time("Pool##{object_id}: checked in connection for Connection##{connection.object_id}[#{connection.origin}]}")
150   end
151 end
checkout_connection(request_uri, options)
[show source]
    # File lib/httpx/plugins/internal_telemetry.rb
141 def checkout_connection(request_uri, options)
142   super.tap do |connection|
143     meter_elapsed_time("Pool##{object_id}: checked out connection for Connection##{connection.object_id}[#{connection.origin}]}")
144   end
145 end