class Protocol::HTTP2::PendingSettings

def acknowledge

def acknowledge
	if changes = @queue.shift
		@current.update(changes)
		
		return changes
	else
		raise ProtocolError, "Cannot acknowledge settings, no changes pending"
	end
end