• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/trackingservice.php
  • Класс: CBPTrackingService
  • Вызов: CBPTrackingService::setCutJob
private function setCutJob()
{
	static $inserted = false;

	if (!$inserted)
	{
		MainApplication::getInstance()->addBackgroundJob(
			[$this, 'doBackgroundCut'],
			[],
			MainApplication::JOB_PRIORITY_LOW - 10
		);
		$inserted = true;
	}
}