Prado\Caching\TMemCache::setPort PHP Method

setPort() public method

public setPort ( $value )
    public function setPort($value)
    {
        if ($this->_initialized) {
            throw new TInvalidOperationException('memcache_port_unchangeable');
        } else {
            $this->_port = TPropertyValue::ensureInteger($value);
        }
    }