Aerospike\LDT\LList::addMany PHP Method

addMany() public method

The elements added must be consistently the same type (string, integer, array).
public addMany ( array $values ) : integer
$values array
return integer status code of the operation
    public function addMany(array $values)
    {
        $status = $this->client->apply($this->key, 'llist', 'add', array($this->bin, $values));
        $this->processStatusCode($status);
        return $this->errorno;
    }