Node.js amqplib何时关闭连接

问题描述 投票:6回答:1

我正在使用amqplib在我的node.js服务器中传输消息。我从RabbitMQ official website中看到了一个示例:

var amqp = require('amqplib/callback_api');

amqp.connect('amqp://localhost', function(err, conn) {
  conn.createChannel(function(err, ch) {
    var q = 'hello';
    var msg = 'Hello World!';

    ch.assertQueue(q, {durable: false});
    // Note: on Node 6 Buffer.from(msg) should be used
    ch.sendToQueue(q, new Buffer(msg));
    console.log(" [x] Sent %s", msg);
  });
  setTimeout(function() { conn.close(); process.exit(0) }, 500);
});

在这种情况下,连接在超时功能中关闭。我认为这不是可持续的方式。但是,ch.sendToQueue没有回调函数,允许我在发送消息后关闭连接。关闭连接有什么好处?

javascript node.js rabbitmq
1个回答
0
投票

我正在使用Promise API,但是过程是相同的。首先,您需要呼叫channel.close(),然后呼叫connection.close()

[channel.sendToQueue()返回一个布尔值。

  • 准备接收更多消息时正确
  • 如果需要在发送更多消息之前等待频道上的'drain'事件,则为False。

这是我的代码,使用async/await

  async sendMsg(msg) {
    const channel = await this.initChannel();

    const sendResult = channel.sendToQueue(this.queue, Buffer.from(msg), {
      persistent: true,
    });

    if (!sendResult) {
      await new Promise((resolve) => channel.once('drain', () => resolve));
    }
  }

  async close() {
    if (this.channel) await this.channel.close();
    await this.conn.close();
  }
© www.soinside.com 2019 - 2024. All rights reserved.