Skip to content

Add warning for not supported no-local flag #305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2017
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
16 changes: 8 additions & 8 deletions src/main/java/com/rabbitmq/client/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1126,8 +1126,8 @@ void basicNack(long deliveryTag, boolean multiple, boolean requeue)
* acknowledged once delivered; false if the server should expect
* explicit acknowledgements
* @param consumerTag a client-generated consumer tag to establish context
* @param noLocal true if the server should not deliver to this consumer
* messages published on this channel's connection
* @param noLocal True if the server should not deliver to this consumer
* messages published on this channel's connection. Note that the RabbitMQ server does not support this flag.
* @param exclusive true if this is an exclusive consumer
* @param callback an interface to the consumer object
* @param arguments a set of arguments for the consume
Expand All @@ -1150,8 +1150,8 @@ void basicNack(long deliveryTag, boolean multiple, boolean requeue)
* acknowledged once delivered; false if the server should expect
* explicit acknowledgements
* @param consumerTag a client-generated consumer tag to establish context
* @param noLocal true if the server should not deliver to this consumer
* messages published on this channel's connection
* @param noLocal True if the server should not deliver to this consumer
* messages published on this channel's connection. Note that the RabbitMQ server does not support this flag.
* @param exclusive true if this is an exclusive consumer
* @param arguments a set of arguments for the consume
* @param deliverCallback callback when a message is delivered
Expand All @@ -1176,8 +1176,8 @@ void basicNack(long deliveryTag, boolean multiple, boolean requeue)
* acknowledged once delivered; false if the server should expect
* explicit acknowledgements
* @param consumerTag a client-generated consumer tag to establish context
* @param noLocal true if the server should not deliver to this consumer
* messages published on this channel's connection
* @param noLocal True if the server should not deliver to this consumer
* messages published on this channel's connection. Note that the RabbitMQ server does not support this flag.
* @param exclusive true if this is an exclusive consumer
* @param arguments a set of arguments for the consume
* @param deliverCallback callback when a message is delivered
Expand All @@ -1202,8 +1202,8 @@ void basicNack(long deliveryTag, boolean multiple, boolean requeue)
* acknowledged once delivered; false if the server should expect
* explicit acknowledgements
* @param consumerTag a client-generated consumer tag to establish context
* @param noLocal true if the server should not deliver to this consumer
* messages published on this channel's connection
* @param noLocal True if the server should not deliver to this consumer
* messages published on this channel's connection. Note that the RabbitMQ server does not support this flag.
* @param exclusive true if this is an exclusive consumer
* @param arguments a set of arguments for the consume
* @param deliverCallback callback when a message is delivered
Expand Down