Zebra_cURL::start PHP Method

start() public method

See {@link queue} method for more information.
Since: 1.3.0 @return void
public start ( ) : void
return void
    public function start()
    {
        // indicate the library that it should execute queued requests
        $this->_queue = false;
        // if we have to pause between batches of requests, process them sequentially, in batches
        if ($this->pause_interval > 0) {
            $this->_process_paused();
        } else {
            $this->_process();
        }
    }