Prado\Caching\TMemCache::setThreshold PHP Method

setThreshold() public method

public setThreshold ( $value )
    public function setThreshold($value)
    {
        if ($this->_initialized) {
            throw new TInvalidOperationException('memcache_threshold_unchangeable');
        } else {
            $this->_threshold = TPropertyValue::ensureInteger($value);
        }
    }