• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/counter/counterservice.php
  • Класс: BitrixTasksInternalsCounterCounterService
  • Вызов: CounterService::done
private function done(): void
{
	$ids = $this->getEventCollection()->getEventsId();
	if (empty($ids))
	{
		return;
	}

	CounterEventEventTable::markProcessed([
		'@ID' => $ids
	]);

	Application::getConnection()->unlock(self::LOCK_KEY);
}