You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Iif true, the broker won’t expect an acknowledgement of messages delivered to this consumer; i.e., it will dequeue messages as soon as they’ve been sent down the wire.
246
+
* @default false
247
+
*/
226
248
noAck?: boolean;
249
+
/**
250
+
* A name which the server will use to distinguish message deliveries for the consumer; mustn’t be already in use on the channel. It’s usually easier to omit this, in which case the server will create a random name and supply it in the reply.
251
+
*/
227
252
consumerTag?: string;
253
+
/**
254
+
* A serializer for the message payload.
255
+
*/
228
256
serializer?: Serializer;
257
+
/**
258
+
* A deserializer for the message payload.
259
+
*/
229
260
deserializer?: Deserializer;
261
+
/**
262
+
* A reply queue for the producer.
263
+
* @default 'amq.rabbitmq.reply-to'
264
+
*/
230
265
replyQueue?: string;
266
+
/**
267
+
* If truthy, the message will survive broker restarts provided it’s in a queue that also survives restarts.
268
+
*/
231
269
persistent?: boolean;
270
+
/**
271
+
* Additional headers to be sent with every message.
272
+
* Applies only to the producer configuration.
273
+
*/
232
274
headers?: Record<string,string>;
275
+
/**
276
+
* When false, a queue will not be asserted before consuming.
277
+
* @default false
278
+
*/
233
279
noAssert?: boolean;
280
+
/**
281
+
* Name for the exchange. Defaults to the queue name when "wildcards" is set to true.
0 commit comments