Method: HTTP::Protocol::HTTP2::FlowControl#receive_window_update

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

#receive_window_update(frame) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/http/protocol/http2/flow_control.rb', line 72

def receive_window_update(frame)
	was_full = @remote_window.full?
	
	@remote_window.expand(frame.unpack)
	
	self.window_updated if was_full
end