rabbitmq AMQP::consume()(rabbitmq AMQP::consume())
问题描述
AMQP 函数 consume() 是一个带有回调的阻塞函数,是否可以为 consume() 函数设置超时,这样在特定时间后它不再阻塞并且代码执行完成?
AMQP function consume() is a blocking function with a callback, Is it possible to set a timeout for consume() function, so after specific amount of time it doesn't block anymore and the code execution completes ?
推荐答案
是的,方法如下:
$amqp = new AMQPConnection($your_connection_params);
$amqp->setTimeout($seconds);
那么当你在队列上调用consume()时,如果在超时时间内没有消息到达,consume()会抛出一个AMQPException,消息是资源暂时不可用".如果您曾经中断消费()或遇到超时,请务必在队列对象上调用取消()以正确重置消费者.为此,您需要生成一个全局唯一的消费者标签,并将其作为未记录的第三个参数传入消费:
Then when you call consume() on a queue, if no messages arrive within the timeout period, an AMQPException will be thrown from consume() with the message, "Resource temporarily unavailable". If you ever break out of consume() or hit a timeout, be sure to call cancel() on the queue object to properly reset the consumer. In order to do this, you need to generate a globally unique consumer tag and pass it in as an undocumented, third parameter to consume:
$tag = uniqid() . microtime(true);
$queue->consume($callback, $flags, $tag);
$queue->cancel($tag);
这样,您以后可以再次调用consume(),而不会出现令您头晕目眩的奇怪问题.
That way, you can call consume() again later without weird issues that will make your head spin.
这篇关于rabbitmq AMQP::consume()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:rabbitmq AMQP::consume()
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01