mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
17 lines
378 B
PHP
17 lines
378 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Utils;
|
||
|
|
|
||
|
|
|
||
|
|
class ProcessManager
|
||
|
|
{
|
||
|
|
public static function runOnTask($param, $timeout = 0.5, $dst_worker_id = -1) {
|
||
|
|
return server()->taskwait([
|
||
|
|
"action" => "runMethod",
|
||
|
|
"class" => $param["class"],
|
||
|
|
"method" => $param["method"],
|
||
|
|
"params" => $param["params"]
|
||
|
|
], $timeout, $dst_worker_id);
|
||
|
|
}
|
||
|
|
}
|