Method: HTTP::Protocol::HTTP2::Connection#window_updated

Defined in:
lib/http/protocol/http2/connection.rb

#window_updatedObject



327
328
329
330
331
332
# File 'lib/http/protocol/http2/connection.rb', line 327

def window_updated
	# This is very inefficient, but workable.
	@streams.each_value do |stream|
		stream.window_updated unless stream.closed?
	end
end