class Async::HTTP::Protocol::HTTP2::Request

def initialize(connection, stream_id)

def initialize(connection, stream_id)
	super(nil, nil, nil, nil, VERSION, ::Protocol::HTTP::Headers.new)
	
	@input = nil
	@length = nil
	
	@connection = connection
	@stream = Stream.new(self, connection, stream_id)
end