class Protocol::HTTP2::Connection

def receive_priority(frame)

Sets the priority for an incoming stream.
def receive_priority(frame)
	if dependency = @dependencies[frame.stream_id]
		dependency.receive_priority(frame)
	elsif idle_stream_id?(frame.stream_id)
		Dependency.create(self, frame.stream_id, frame.unpack)
	end
end