我正在使用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
没有回调函数,允许我在发送消息后关闭连接。关闭连接有什么好处?
我正在使用Promise API,但是过程是相同的。首先,您需要呼叫channel.close()
,然后呼叫connection.close()
。
[channel.sendToQueue()
返回一个布尔值。
这是我的代码,使用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();
}