Files
kiri-core/Kafka/ConsumerInterface.php
T

23 lines
222 B
PHP
Raw Normal View History

2020-10-09 16:34:33 +08:00
<?php
namespace Kafka;
/**
* Interface ConsumerInterface
* @package App\Kafka
*/
interface ConsumerInterface
{
/**
2020-10-09 18:43:35 +08:00
* @param Struct $struct
2020-10-09 16:34:33 +08:00
* @return mixed
*/
2020-10-09 18:43:35 +08:00
public function onHandler(Struct $struct);
2020-10-09 16:34:33 +08:00
}