Method: Protocol::HTTP2::WindowUpdateFrame#read_payload

Defined in:
lib/protocol/http2/window_update_frame.rb

#read_payload(stream) ⇒ Object



103
104
105
106
107
108
109
# File 'lib/protocol/http2/window_update_frame.rb', line 103

def read_payload(stream)
	super
	
	if @length != 4
		raise FrameSizeError, "Invalid frame length: #{@length} != 4!"
	end
end