This commit is contained in:
2021-07-23 17:38:09 +08:00
parent b12ebb9c7e
commit e57e600945
4 changed files with 82 additions and 72 deletions
+16 -1
View File
@@ -11,7 +11,22 @@ namespace Server\SInterface;
interface PipeMessage
{
public function process();
/**
*
*/
public function process(): void;
/**
*
*/
public function max_execute(): void;
/**
* @return bool
*/
public function isStop(): bool;
}