setName('xtask:start')->setDescription('创建异步任务监听守护主进程'); } /** * 执行启动操作 * @param Input $input * @param Output $output */ protected function execute(Input $input, Output $output) { $this->cmd = "{$this->bin} xtask:listen"; if (($pid = $this->checkProcess()) > 0) { $output->info("异步任务监听主进程{$pid}已经启动!"); } else { $this->createProcess(); if (($pid = $this->checkProcess()) > 0) { $output->info("异步任务监听主进程{$pid}启动成功!"); } else { $output->error('异步任务监听主进程创建失败!'); } } } }