2021-07-15 19:04:00 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
2021-07-18 12:06:56 +08:00
|
|
|
namespace Server\SInterface;
|
2021-07-15 19:04:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
use Swoole\Server;
|
|
|
|
|
|
2021-09-24 02:23:24 +08:00
|
|
|
interface OnTaskInterface
|
2021-07-15 19:04:00 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function execute();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function finish(Server $server, int $task_id);
|
|
|
|
|
|
|
|
|
|
}
|