Method: Protocol::HTTP2::Connection#window_updated
- Defined in:
- lib/protocol/http2/connection.rb
#window_updated ⇒ Object
324 325 326 327 328 329 |
# File 'lib/protocol/http2/connection.rb', line 324 def window_updated # This is very inefficient, but workable. @streams.each_value do |stream| stream.window_updated unless stream.closed? end end |