PHP Класс Predis\Response\Iterator\MultiBulkIterator

This iterator does not support rewinding which means that the iteration, once consumed, cannot be restarted. Always make sure that the whole iteration is consumed (or dropped) to prevent protocol desynchronization issues.
Автор: Daniele Alessandri ([email protected])
Наследование: implements Iterator, implements Countable, implements Predis\Response\ResponseInterface
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$current
$position
$size

Открытые методы

Метод Описание
count ( ) : integer Returns the number of items comprising the whole multibulk response.
current ( )
getPosition ( ) : integer Returns the current position of the iterator.
key ( )
next ( )
rewind ( )
valid ( )

Защищенные методы

Метод Описание
getValue ( )

Описание методов

count() публичный Метод

This method should be used instead of iterator_count() to get the size of the current multibulk response since the former consumes the iteration to count the number of elements, but our iterators do not support rewinding.
public count ( ) : integer
Результат integer

current() публичный Метод

public current ( )

getPosition() публичный Метод

Returns the current position of the iterator.
public getPosition ( ) : integer
Результат integer

getValue() абстрактный защищенный Метод

abstract protected getValue ( )

key() публичный Метод

public key ( )

next() публичный Метод

public next ( )

rewind() публичный Метод

public rewind ( )

valid() публичный Метод

public valid ( )

Описание свойств

$current защищенное свойство

protected $current

$position защищенное свойство

protected $position

$size защищенное свойство

protected $size