Method: Protocol::HTTP2::Priority#pack

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

#packObject



35
36
37
38
39
40
41
# File 'lib/protocol/http2/priority_frame.rb', line 35

def pack
	if exclusive
		stream_dependency = self.stream_dependency | EXCLUSIVE
	end
	
	return [stream_dependency, self.weight].pack(FORMAT)
end