Files
kiri-core/Kafka/ConsumerInterface.php
T
2020-10-09 18:43:35 +08:00

23 lines
222 B
PHP

<?php
namespace Kafka;
/**
* Interface ConsumerInterface
* @package App\Kafka
*/
interface ConsumerInterface
{
/**
* @param Struct $struct
* @return mixed
*/
public function onHandler(Struct $struct);
}