30 lines
431 B
PHP
Executable File
30 lines
431 B
PHP
Executable File
<?php
|
|
|
|
namespace RdKafka;
|
|
|
|
use RdKafka\Metadata\Collection;
|
|
use RdKafka\Metadata\Topic;
|
|
|
|
class Metadata
|
|
{
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getBrokers() {}
|
|
|
|
/**
|
|
* @return Collection|Topic[]
|
|
*/
|
|
public function getTopics() {}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getOrigBrokerId() {}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getOrigBrokerName() {}
|
|
}
|