Files
kiri-core/Kafka/ConsumerInterface.php
T
2020-12-23 16:28:40 +08:00

23 lines
252 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;
}