2022-03-15 18:05:33 +08:00
|
|
|
<?php
|
2020-03-19 17:43:27 +08:00
|
|
|
|
2022-03-15 18:05:33 +08:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
use ZM\Utils\CoroutinePool;
|
|
|
|
|
|
|
|
|
|
function pgo(callable $func, string $name = 'default')
|
|
|
|
|
{
|
|
|
|
|
CoroutinePool::go($func, $name);
|
2020-09-29 15:07:43 +08:00
|
|
|
}
|