• Модуль: biconnector
  • Путь к файлу: ~/bitrix/modules/biconnector/lib/manager.php
  • Класс: BitrixBIConnectorManager
  • Вызов: Manager::endQuery
public function endQuery($logId, $count, $size = null)
{
	if (isset($this->stime[$logId]))
	{
		$statData = [
			'TIMESTAMP_X' => new BitrixMainTypeDateTime(),
			'ROW_NUM' => $count,
			'DATA_SIZE' => $size,
			'REAL_TIME' => microtime(true) - $this->stime[$logId],
		];

		$updateResult = BitrixBIConnectorLogTable::update($logId, $statData);
		$updateResult->isSuccess();
	}
}