Prado\Web\UI\ActiveControls\TTimeTriggeredCallback::setInterval PHP Метод

setInterval() публичный Метод

public setInterval ( $value )
    public function setInterval($value)
    {
        $interval = TPropertyValue::ensureFloat($value);
        if ($interval <= 0) {
            throw new TConfigurationException('callback_interval_be_positive', $this->getID());
        }
        if ($this->getInterval() === $value) {
            return;
        }
        $this->setViewState('Interval', $interval, 1);
        if ($this->getActiveControl()->canUpdateClientSide()) {
            $client = $this->getPage()->getCallbackClient();
            $client->callClientFunction('Prado.WebUI.TTimeTriggeredCallback.setTimerInterval', array($this, $interval));
        }
    }