class Protocol::HTTP2::LocalWindow

def initialize(capacity = DEFAULT_CAPACITY, desired: nil)

def initialize(capacity = DEFAULT_CAPACITY, desired: nil)
	super(capacity)
	
	# The desired capacity of the window, may be bigger than the initial capacity.
	# If that is the case, we will likely send a window update to the remote end to increase the capacity.
	@desired = desired
end