• Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/status.php
  • Класс: BitrixImConnectorStatus
  • Вызов: Status::setError
public function setError(bool $state): self
{
	if ($this->error != $state)
	{
		$this->flagUpdated = true;
		self::addBackgroundTasks($this->connector, $this->line);
		$this->error = $state;
	}

	return $this;
}