33 lines
295 B
PHP
33 lines
295 B
PHP
<?php
|
|
|
|
|
|
namespace Server\SInterface;
|
|
|
|
|
|
/**
|
|
* Interface PipeMessage
|
|
* @package Server\SInterface
|
|
*/
|
|
interface PipeMessage
|
|
{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function process(): void;
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function max_execute(): void;
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isStop(): bool;
|
|
|
|
|
|
}
|