Aerospike\LDT\LDT::config PHP Method

config() public method

Retrieves the LDT configuration data.
public config ( array &$config ) : integer
$config array will be updated with the configuration data
return integer status code of the operation
    public function config(&$config)
    {
        $config = array();
        $status = $this->client->apply($this->key, 'llist', 'config', array($this->bin), $config);
        $this->processStatusCode($status);
        return $this->errorno;
    }