Method: HTTP::Protocol::HTTP2::Connection#update_remote_settings
- Defined in:
- lib/http/protocol/http2/connection.rb
#update_remote_settings(changes) ⇒ Object
181 182 183 184 185 186 187 |
# File 'lib/http/protocol/http2/connection.rb', line 181 def update_remote_settings(changes) capacity = @remote_settings.initial_window_size @streams.each_value do |stream| stream.remote_window.capacity = capacity end end |