class Async::HTTP::Protocol::HTTP2::Client

def stop_connection(error)

def stop_connection(error)
	super
	
	@streams.each do |id, stream|
		if stream.respond_to?(:stop_connection)
			stream.stop_connection(error)
		end
	end
end