Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在单个任务完成时设置回调setCompleteCallback()- 是否可以在整批任务完成时设置回调(并行运行时),例如,如果您使用runTasks()如下:
setCompleteCallback()
runTasks()
$client->addTask($method1, $data); $client->addTask($method2, $data); $client->runTasks();
我需要知道两个任务何时完成才能结束工作......
啊,addTask是同步的,所以我不需要做任何轮询,runTasks一旦全部完成就返回 true,所以这就是我的答案。
addTask
runTasks