Kafka\Client::getZooKeeper PHP Method

getZooKeeper() public method

get kafka zookeeper object
public getZooKeeper ( ) : ZooKeeper
return ZooKeeper
    public function getZooKeeper()
    {
        if ($this->metadata instanceof \Kafka\ZooKeeper) {
            return $this->metadata;
        } else {
            throw new \Kafka\Exception('ZooKeeper was not provided');
        }
    }