Bind an exchange to the queue. This will also setup the exchange (if skipSetup is called it will not be set up and bindings won't be made, calling bindExchange and skipSetup together does not make sense)
Optional
exchangeParams: ExchangeParamsOptional
exchangeArguments: ExchangeArgumentsOptional
bindingArguments: BindingArgumentsBind an exchange to the queue. This will also setup the exchange (if skipSetup is called it will not be set up and bindings won't be made, calling bindExchange and skipSetup together does not make sense)
Optional
bindingArguments: BindingArgumentsSet the number of messages to prefetch. This will be the maximum number of concurrent messages that will be processed.
The number of messages to prefetch
Set the publish to use confirm mode. This will make the publish method return a promise that will resolve when the message has been confirmed as received by the broker.
Set the exclusive mode true or false. When exclusive is true the broker won't let anyone else consume from this queue.
Optional
exclusive: booleanSet the message expiration time in milliseconds
Always serialize messages as JSON. This will make the publish method always serialize the message as JSON before sending it to the broker. The subscribe method will always deserialize the message as JSON before passing it to the callback.
Optional
autoSerialize: booleanSet the noAck mode true or false. When noAck is true the broker won't expect an acknowledgement of messages delivered to this consumer.
Optional
noAck: booleanSet the number of messages to prefetch. This will be the maximum number of concurrent messages that will be processed.
The number of messages to prefetch
Send a message to the queue. Unless .json(false) has been called the message will be serialized as JSON before being sent to the broker.
Purge the queue. This will remove all messages from the queue.
Set up the topology declared in the chain. All exchanges / queues / bindings will be created.
Skip setup of the topology declared in the chain. Normally all queues / exchanges / bindings will be created each time subscribe / publish is called. This method will skip that step.
Optional
options: boolean | SkipSetupOptionsSet the offset to start reading from. This will only work with streams The possible values are:
When using timestamp based offsets You might still get messages that were published before the given timestamp.
Subscribe to the queue. When .skipSetup has not been called this will also set up the queue and any bound exchanges that may be present.
Unbind an exchange from the exchange / queue.
Optional
bindingArguments: BindingArgumentsOptional
bindingArguments: BindingArgumentsAdd middleware to the chain. Middleware will be called in the order they are added. Middleware can be used to modify the message before it is passed to the callback. Middleware can also be used to ack/nack the message.
Middleware is invoked with the message and a function that returns a promise for the next item in the callback stack. If you don't call it and don't ack/nack the message then it will be called for you.
Set the backoff strategy to use when a message fails to process. Currently the only bundled backoff strategy is standardBackoff