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