hunterloftis / jackrabbit

Simple AMQP / RabbitMQ job queues for node based on amqplib
293 stars 65 forks source link

Add noReply option to exchange and enable passing of options paramaters during initialization #57

Closed mertcetin closed 6 years ago

mertcetin commented 8 years ago

If noReply options is set for an exchange, an exclusive reply queue will not be automatically created for that exchange.

Example usage:

var defaultExchange = jackrabbit.default({ noReply: true });
var fanoutExchange = jackrabbit.fanout('failed', { noReply: true });

Handles #53

matmar10 commented 6 years ago

Obsoleted by #91