18 lines
176 B
PHP
18 lines
176 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace Server\SInterface;
|
||
|
|
|
||
|
|
|
||
|
|
use Swoole\Server;
|
||
|
|
|
||
|
|
interface OnTaskInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function execute();
|
||
|
|
|
||
|
|
|
||
|
|
public function finish(Server $server, int $task_id);
|
||
|
|
|
||
|
|
}
|