• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Link/Push.php
  • Класс: BitrixImV2LinkPush
  • Вызов: Push::deferRun
protected function deferRun(): void
{
	if (!$this->isJobPlanned)
	{
		Application::getInstance()->addBackgroundJob(function () {
			$this->push();
		});
		$this->isJobPlanned = true;
	}
}