Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/main/java/com/rabbitmq/client/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ void exchangeDeclareNoWait(String exchange,
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -533,7 +533,7 @@ void exchangeDeclareNoWait(String exchange,
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
Expand All @@ -545,7 +545,7 @@ void exchangeDeclareNoWait(String exchange,
* to true and returns void (as there will be no response from the server).
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -557,7 +557,7 @@ void exchangeDeclareNoWait(String exchange,
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -569,7 +569,7 @@ void exchangeDeclareNoWait(String exchange,
* @see com.rabbitmq.client.AMQP.Exchange.BindOk
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
Expand All @@ -581,7 +581,7 @@ void exchangeDeclareNoWait(String exchange,
* and returns nothing (as there will be no response from the server).
* @param destination the name of the exchange to which messages flow across the binding
* @param source the name of the exchange from which messages flow across the binding
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @throws java.io.IOException if an error is encountered
*/
Expand Down Expand Up @@ -679,7 +679,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
* @see com.rabbitmq.client.AMQP.Queue.BindOk
* @param queue the name of the queue
* @param exchange the name of the exchange
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -691,7 +691,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
* @see com.rabbitmq.client.AMQP.Queue.BindOk
* @param queue the name of the queue
* @param exchange the name of the exchange
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @return a binding-confirm method if the binding was successfully created
* @throws java.io.IOException if an error is encountered
Expand All @@ -704,7 +704,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
* from the server).
* @param queue the name of the queue
* @param exchange the name of the exchange
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -716,7 +716,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
* @see com.rabbitmq.client.AMQP.Queue.UnbindOk
* @param queue the name of the queue
* @param exchange the name of the exchange
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @return an unbinding-confirm method if the binding was successfully deleted
* @throws java.io.IOException if an error is encountered
*/
Expand All @@ -728,7 +728,7 @@ void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolea
* @see com.rabbitmq.client.AMQP.Queue.UnbindOk
* @param queue the name of the queue
* @param exchange the name of the exchange
* @param routingKey the routine key to use for the binding
* @param routingKey the routing key to use for the binding
* @param arguments other properties (binding parameters)
* @return an unbinding-confirm method if the binding was successfully deleted
* @throws java.io.IOException if an error is encountered
Expand Down