PHPDaemon\Clients\Mongo\Cursor::getMore PHP Method

getMore() public method

Asks for more objects
public getMore ( integer $number ) : void
$number integer Number of objects
return void
    public function getMore($number = 0)
    {
        if ($this->finished || $this->destroyed) {
            return;
        }
        if (mb_orig_substr($this->id, 0, 1) === 'c') {
            $this->conn->pool->getMore($this->col, mb_orig_substr($this->id, 1), $number, $this->conn);
        }
    }