class Seahorse::Client::NetHttp::ConnectionPool::ExtendedSession

def request(*args, &block)

Sends the request and tracks that this session has been used.
def request(*args, &block)
  @last_used = Time.now
  @http.request(*args, &block)
end