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

def stop_connection(error)

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