Files
kiri-core/Kafka/ConsumerInterface.php
T
2020-12-17 14:09:14 +08:00

23 lines
253 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): mixed;
}