This commit is contained in:
2021-07-15 19:04:00 +08:00
parent 68e331a960
commit 5690f5a5bc
9 changed files with 700 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace SInterface;
use Swoole\Server;
interface TaskExecute
{
public function execute();
public function finish(Server $server, int $task_id);
}