Files
kiri-core/Server/SInterface/PipeMessage.php
T

33 lines
295 B
PHP
Raw Normal View History

2021-07-23 17:12:20 +08:00
<?php
namespace Server\SInterface;
2021-07-23 17:17:58 +08:00
/**
* Interface PipeMessage
* @package Server\SInterface
*/
2021-07-23 17:12:20 +08:00
interface PipeMessage
{
2021-07-23 17:38:09 +08:00
/**
*
*/
public function process(): void;
/**
*
*/
public function max_execute(): void;
/**
* @return bool
*/
public function isStop(): bool;
2021-07-23 17:12:20 +08:00
}