module Protocol::HTTP2::Continued

def unpack

def unpack
	if @continuation.nil?
		super
	else
		super + @continuation.unpack
	end
end