Files
kiri-http-server/Contract/OnTaskInterface.php
T

18 lines
191 B
PHP
Raw Normal View History

2022-01-09 03:49:02 +08:00
<?php
namespace Server\Contract;
use Swoole\Server;
interface OnTaskInterface
{
public function execute();
public function finish(Server $server, int $task_id);
}