• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/runtime/timer.php
  • Класс: Bitrix\Sender\Runtime\Timer
  • Вызов: Timer::isLimitExceeded
public function isLimitExceeded()
{
	if (!$this->limit)
	{
		return false;
	}

	if (!$this->isManualIncrement)
	{
		$this->increment();
	}

	return ($this->current > $this->limit);
}