Files
kiri-core/Kafka/ConsumerInterface.php
T

23 lines
267 B
PHP
Raw Normal View History

2020-10-09 16:34:33 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-10-09 16:34:33 +08:00
namespace Kafka;
/**
* Interface ConsumerInterface
* @package App\Kafka
*/
interface ConsumerInterface
{
2021-04-24 20:44:38 +08:00
/**
* @param Struct $struct
* @return mixed
*/
public function onHandler(Struct $struct): void;
2020-10-09 16:34:33 +08:00
}