class Async::HTTP::Protocol::HTTP2::Response

def initialize(protocol, stream_id)

def initialize(protocol, stream_id)
	@input = nil
	
	super(protocol.version, nil, nil, Headers.new, nil)
	
	@protocol = protocol
	@stream = Stream.new(self, protocol, stream_id)
	
	@notification = Async::Notification.new
	@exception = nil
end