How can I send an array of messages using RabbitMQ? I do not want to send every message separately.
For example:
ch.publish(ex, '', new Buffer('hello world'));
How could I use something like:
ch.publish(ex, '', new Buffer([msg1, msg2, msg3...]));
Thank you!