RollingCurl\RollingCurl::setSimultaneousLimit PHP Method

setSimultaneousLimit() public method

Please be mindful that if you set this too high, requests are likely to fail more frequently or automated software may perceive you as a DOS attack and automatically block further requests.
public setSimultaneousLimit ( integer $count ) : RollingCurl
$count integer
return RollingCurl
    public function setSimultaneousLimit($count)
    {
        if (!is_int($count) || $count < 2) {
            throw new \InvalidArgumentException("setSimultaneousLimit count must be an int >= 2");
        }
        $this->simultaneousLimit = $count;
        return $this;
    }