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

def initialize(protocol, stream_id)

def initialize(protocol, stream_id)
	super(nil, nil, nil, nil, VERSION, Headers.new)
	
	@input = nil
	@protocol = protocol
	@stream = Stream.new(self, protocol, stream_id)
end