* +---------------------------------------------------------------------- */ namespace app\listener\queue; use think\console\Output; class QueueStartListener { public function handle(Output $output) { $output->writeln('消息队列已启动,正在运行中,windows请不要关闭命令行。linux请使用Supervisor进行进程守护'); } }