From 56ab5498b164e9e43e42e085632fdd658c3967c3 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 23 Feb 2022 09:57:37 -0500 Subject: [PATCH] Doc for producerType property Missing property from docs. --- docs/src/main/asciidoc/overview.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/src/main/asciidoc/overview.adoc b/docs/src/main/asciidoc/overview.adoc index 44d1c7a22..07aeaa9d7 100644 --- a/docs/src/main/asciidoc/overview.adoc +++ b/docs/src/main/asciidoc/overview.adoc @@ -898,6 +898,13 @@ prefix:: A prefix to be added to the name of the `destination` exchange. + Default: "". +producerType:: +The type of producer. +* `AMQP` AMQP Client for classic and quorum queues +* `STREAM_SYNC` RabbitMQ Streams Plugin client, blocks until confirm is received +* `STREAM_ASYNC` RabbitMQ Streams Plugin client, does not block ++ +Default: "". queueBindingArguments:: Arguments applied when binding the queue to the exchange; used with `headers` `exchangeType` to specify headers to match on. For example `...queueBindingArguments.x-match=any`, `...queueBindingArguments.someHeader=someValue`.