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

def initialize(protocol, stream_id)

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