Mongolid\Cursor\Cursor::disableTimeout PHP 메소드

disableTimeout() 공개 메소드

This method should be called before the cursor was started.
public disableTimeout ( boolean $flag = true ) : Cursor
$flag boolean Toggle timeout on or off.
리턴 Cursor Returns this cursor.
    public function disableTimeout(bool $flag = true)
    {
        $this->params[1]['noCursorTimeout'] = $flag;
        return $this;
    }