Files
kiri-core/Kafka/ConsumerInterface.php
T
as2252258@163.com dd5e65b522 modify
2021-04-24 20:46:17 +08:00

23 lines
267 B
PHP

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