class Protocol::HTTP2::Connection

def close(error = nil)

Close the underlying framer and all streams.
def close(error = nil)
	# The underlying socket may already be closed by this point.
	@streams.each_value{|stream| stream.close(error)}
	@streams.clear
	
ensure
	if @framer
		@framer.close
		@framer = nil
	end
end