Class: Protocol::HTTP2::WindowUpdateFrame

Inherits:
Frame
  • Object
show all
Defined in:
lib/protocol/http2/window_update_frame.rb

Overview

The WINDOW_UPDATE frame is used to implement flow control.

-————————————————————-+ |R| Window Size Increment (31) | -————————————————————-+

Constant Summary collapse

TYPE =
0x8
FORMAT =
"N"

Constants inherited from Frame

Frame::HEADER_FORMAT, Frame::LENGTH_HISHIFT, Frame::LENGTH_LOMASK, Frame::STREAM_ID_MASK, Frame::VALID_LENGTH, Frame::VALID_STREAM_ID

Instance Attribute Summary

Attributes inherited from Frame

#flags, #length, #payload, #stream_id, #type

Instance Method Summary collapse

Methods inherited from Frame

#<=>, #clear_flags, #connection?, #flag_set?, #header, #initialize, #inspect, parse_header, #read, #read_header, #set_flags, #to_ary, #valid_type?, #write, #write_header, #write_payload

Constructor Details

This class inherits a constructor from Protocol::HTTP2::Frame

Instance Method Details

#apply(connection) ⇒ Object



111
112
113
# File 'lib/protocol/http2/window_update_frame.rb', line 111

def apply(connection)
	connection.receive_window_update(self)
end

#pack(window_size_increment) ⇒ Object



95
96
97
# File 'lib/protocol/http2/window_update_frame.rb', line 95

def pack(window_size_increment)
	super [window_size_increment].pack(FORMAT)
end

#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

#unpackObject



99
100
101
# File 'lib/protocol/http2/window_update_frame.rb', line 99

def unpack
	super.unpack1(FORMAT)
end