We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 293c683 commit 99a92a8Copy full SHA for 99a92a8
src/com/rabbitmq/client/ReturnListener.java
@@ -26,7 +26,7 @@
26
* @see Channel#basicPublish
27
*/
28
public interface ReturnListener {
29
- void handleBasicReturn(int replyCode,
+ void handleReturn(int replyCode,
30
String replyText,
31
String exchange,
32
String routingKey,
src/com/rabbitmq/client/impl/ChannelN.java
@@ -279,7 +279,7 @@ public void releaseChannelNumber() {
279
if (l != null) {
280
Basic.Return basicReturn = (Basic.Return) method;
281
try {
282
- l.handleBasicReturn(basicReturn.replyCode,
+ l.handleReturn(basicReturn.replyCode,
283
basicReturn.replyText,
284
basicReturn.exchange,
285
basicReturn.routingKey,
0 commit comments