作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 PhoneGap 上使用 web-stomp 插件 + SockJS/Stomp.js 并观察到在某些情况下(可能与网络有关),流量可以停止而不会触发连接错误。为了解决这个问题,我想我可能会使用心跳,所以我在我的js中添加了以下内容:
function Connect() {
console.log('Connecting...');
// Connect
var ws = new SockJS(mq_url);
client = Stomp.over(ws);
client.heartbeat.outgoing = 5000; // if 5000 means client will send heart beat every 5000ms
client.heartbeat.incoming = 5000; // if 0 means client does not want to receive heartbeats from server
client.debug = function (str) {
$("#debug").append(timeStamp() + str + "<br>");
varmessage = str;
};
client.connect(
mq_username, mq_password, on_connect, on_connect_error, mq_vhost);
}
-> PING
-> PING
did not receive server activity for the last 10017ms
Whoops! Lost connection to undefined
[
{rabbit, [
{cluster_nodes, {['rabbit@server'], disc}},
{cluster_partition_handling, autoheal},
{heartbeat, 1}
]},
最佳答案
心跳参数在客户端实现。 RabbitMQ 会响应客户端发出的心跳。服务端可以要求客户端每隔一定的时间间隔发送一次心跳,但客户端不必跟随。 AMQP Reference ; RabbitMQ reference
关于rabbitmq - 如何为RabbitMQ启用服务器端心跳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21020945/
我是一名优秀的程序员,十分优秀!