class Async::HTTP::Internet
def call(method, url, headers = [], body = nil)
def call(method, url, headers = [], body = nil) endpoint = Endpoint.parse(url) key = host_key(endpoint) client = @clients.fetch(key) do @clients[key] = self.client_for(endpoint) end body = Body::Buffered.wrap(body) request = ::Protocol::HTTP::Request.new(client.scheme, endpoint.authority, method, endpoint.path, nil, headers, body) return client.call(request) end