class Async::HTTP::Protocol::HTTP2::Stream

def window_updated(size)

@returns [Boolean] Always returns `true`.
@parameter size [Integer] The new window size.
Called when the flow control window is updated.
def window_updated(size)
	super
	
	@output&.window_updated(size)
	
	return true
end