You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2017/08/25 12:02:52 UTC

[3/3] camel git commit: CAMEL-11704: Docs

CAMEL-11704: Docs


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/0c55b9c6
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0c55b9c6
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0c55b9c6

Branch: refs/heads/master
Commit: 0c55b9c60311a54458e169d64b14cb68ca599466
Parents: a734ce3
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Aug 25 14:01:23 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Aug 25 14:01:23 2017 +0200

----------------------------------------------------------------------
 components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0c55b9c6/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc b/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
index c147441..d29472f 100644
--- a/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
+++ b/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
@@ -61,7 +61,7 @@ with the following path and query parameters:
 | **exchangeName** | *Required* The exchange name determines which exchange produced messages will sent to. In the case of consumers the exchange name determines which exchange the queue will bind to. |  | String
 |=======================================================================
 
-#### Query Parameters (57 parameters):
+#### Query Parameters (58 parameters):
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |=======================================================================
@@ -76,6 +76,7 @@ with the following path and query parameters:
 | **durable** (common) | If we are declaring a durable exchange (the exchange will survive a server restart) | true | boolean
 | **exchangeType** (common) | The exchange type such as direct or topic. | direct | String
 | **exclusive** (common) | Exclusive queues may only be accessed by the current connection and are deleted when that connection closes. | false | boolean
+| **passive** (common) | Passive queues depend on the queue already to be available at RabbitMQ. | false | boolean
 | **queue** (common) | The queue to receive messages from |  | String
 | **routingKey** (common) | The routing key to use when binding a consumer queue to the exchange. For producer routing keys you set the header rabbitmq.ROUTING_KEY. |  | String
 | **skipExchangeDeclare** (common) | This can be used if we need to declare the queue but not the exchange | false | boolean
@@ -95,7 +96,7 @@ with the following path and query parameters:
 | **bridgeEndpoint** (producer) | If the bridgeEndpoint is true the producer will ignore the message header of rabbitmq.EXCHANGE_NAME and rabbitmq.ROUTING_KEY | false | boolean
 | **channelPoolMaxSize** (producer) | Get maximum number of opened channel in pool | 10 | int
 | **channelPoolMaxWait** (producer) | Set the maximum number of milliseconds to wait for a channel from the pool | 1000 | long
-| **guaranteedDeliveries** (producer) | When true an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory. PublisherAcknowledgement will also be activated in this case See also publisher acknowledgements - When will messages be confirmed | false | boolean
+| **guaranteedDeliveries** (producer) | When true an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory. PublisherAcknowledgement will also be activated in this case See also a href=https://www.rabbitmq.com/confirms.htmlpublisher acknowledgements - When will messages be confirmed | false | boolean
 | **immediate** (producer) | This flag tells the server how to react if the message cannot be routed to a queue consumer immediately. If this flag is set the server will return an undeliverable message with a Return method. If this flag is zero the server will queue the message but with no guarantee that it will ever be consumed. If the header is present rabbitmq.IMMEDIATE it will override this option. | false | boolean
 | **mandatory** (producer) | This flag tells the server how to react if the message cannot be routed to a queue. If this flag is set the server will return an unroutable message with a Return method. If this flag is zero the server silently drops the message. If the header is present rabbitmq.MANDATORY it will override this option. | false | boolean
 | **publisherAcknowledgements** (producer) | When true the message will be published with publisher acknowledgements turned on | false | boolean