Files
kiri-core/http-server/SInterface/OnTaskInterface.php
T

18 lines
176 B
PHP
Raw Normal View History

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);
}