Predis\Collection\Iterator\CursorBasedIterator::fetch PHP 메소드

fetch() 보호된 메소드

Populates the local buffer of elements fetched from the server during the iteration.
protected fetch ( )
    protected function fetch()
    {
        list($cursor, $elements) = $this->executeCommand();
        if (!$cursor) {
            $this->fetchmore = false;
        }
        $this->cursor = $cursor;
        $this->elements = $elements;
    }