evseevnn\Cassandra\Protocol\Response\DataStream::readList PHP Метод

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

Read list.
public readList ( $valueType ) : array
$valueType
Результат array
    public function readList($valueType)
    {
        $list = array();
        $count = $this->readShort();
        for ($i = 0; $i < $count; ++$i) {
            $list[] = $this->readByType($valueType, true);
        }
        return $list;
    }