KafkaConsumer.php 532 B

12345678910111213141516171819202122
  1. <?php
  2. /* *****************************************************************
  3. * @Author: wushuiyong
  4. * @Created Time : 六 7/18 23:08:29 2015
  5. *
  6. * @File Name: KafkaConsumer.php
  7. * @Description:
  8. * *****************************************************************/
  9. namespace app\components;
  10. use yii\console\Controller;
  11. use app\components\ZKafka;
  12. class KafkaConsumer {
  13. public static function process($topic, $offset, $limit = 20) {
  14. $message = ZKafka::consume($topic, $offset, $limit);
  15. return $message;
  16. }
  17. }