Global

Members

(constant) AMQPLIB_EXCHANGE_DEFAULTS :Object

Default options provided for asserted exchanges. Reference the amqplib docs for more information.
Type:
  • Object
Properties:
Name Type Default Description
autoDelete Boolean false Delete exchange when it has 0 bindings.
durable Boolean true Queue survives broker restarts.
internal Boolean false Messages cannot be published directly to the exchange.
Source:

(constant) AMQPLIB_QUEUE_DEFAULTS :Object

Default options provided for asserted queues. Reference the amqplib docs for more information.
Type:
  • Object
Properties:
Name Type Default Description
autoDelete Boolean false Delete queue when it has 0 consumers.
durable Boolean true Queue survives broker restarts.
exclusive Boolean false Scopes the queue to the connection.
Source: