• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/notification/controller.php
  • Класс: BitrixTasksInternalsNotificationController
  • Вызов: Controller::push
public function push(): void
{
	try
	{
		$notifications = $this->buffer->flush();
		$this->pusher->push($notifications);
	}
	catch (Throwable $e)
	{
		throw new Exception('Failed pushing notifications with message: ' . $e->getMessage(), $e->getCode());
	}
}