Files
kiri-core/Kafka/ConsumerInterface.php
T

22 lines
213 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-08-05 15:55:27 +08:00
/**
* @return mixed
*/
public function process(): void;
2021-04-24 20:44:38 +08:00
2020-10-09 16:34:33 +08:00
}