class Async::HTTP::Protocol::HTTP2::Client
def call(request)
def call(request) @count += 1 response = Response.new(self, next_stream_id) response.send_request(request) response.wait return response end
def initialize(stream, *args)
def initialize(stream, *args) @stream = stream framer = ::HTTP::Protocol::HTTP2::Framer.new(@stream) super(framer, *args) end