Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

rabbitmq php basic_consume 怎么在没有消息接收的时候退出脚本

require_once __DIR__ . '/vendor/autoload.php';  
    use PhpAmqpLibConnectionAMQPStreamConnection;  
    $connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');  
    $channel = $connection->channel();  
      
    $channel->queue_declare('hello', false, false, false, false);  
      
    echo ' [*] Waiting for messages. To exit press CTRL+C', "
";  
    $callback = function($msg) {  
      echo " [x] Received ", $msg->body, "
";  
    };  
      
    //在接收消息的时候调用$callback函数  
    $channel->basic_consume('hello', '', false, true, false, false, $callback);  
      
    while(count($channel->callbacks)) {  
        $channel->wait();  
    }

当我使用网上这段代码消费队列时,怎么会php脚本一直卡住,不会停止退出呢


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...