QueueStartListener.php 947 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * +----------------------------------------------------------------------
  4. * | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  5. * +----------------------------------------------------------------------
  6. * | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  7. * +----------------------------------------------------------------------
  8. * | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  9. * +----------------------------------------------------------------------
  10. * | Author: CRMEB Team <admin@crmeb.com>
  11. * +----------------------------------------------------------------------
  12. */
  13. namespace app\listener\queue;
  14. use think\console\Output;
  15. class QueueStartListener
  16. {
  17. public function handle(Output $output)
  18. {
  19. $output->writeln('消息队列已启动,正在运行中,windows请不要关闭命令行。linux请使用Supervisor进行进程守护');
  20. }
  21. }