Files
kiri-core/Kafka/ConsumerInterface.php
T
2021-08-05 16:23:25 +08:00

29 lines
302 B
PHP

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