芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/azjezz/psl/src/Psl/Async/run.php
*/ function run(Closure $closure): Awaitable { $state = new Internal\State(); EventLoop::defer(static function () use ($closure, $state) { try { $result = $closure(); $state->complete($result); } catch (Throwable $exception) { $state->error($exception); } }); return new Awaitable($state); }