Kafka\ZooKeeper::listConsumer PHP Method

listConsumer() public method

list consumer
public listConsumer ( string $groupId ) : array
$groupId string
return array
    public function listConsumer($groupId)
    {
        $path = sprintf(self::LIST_CONSUMER, (string) $groupId);
        return $this->zookeeper->getChildren($path);
    }