delivery-report
每次为生成的每条消息调用事件,并从一开始就不断提供传递报告。例如,我们将获得第一封邮件的偏移量为1的交货报告。对于第二条消息,我们将得到两个偏移量为2的传递报告。对于第三个,我们将得到3个带有偏移量3的传递消息,以此类推。
producer.on('delivery-report', function (err, report) {
console.log("delivery report received");
console.log('delivery-report: ' + JSON.stringify(report));
});
1条答案
按热度按时间axr492tv1#
为了
delivery-report
事件有一个once
绑定,每个消息只传递一个传递报告。