Method: HTTP::Protocol::HTTP2::Priority#pack

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

#packObject



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

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