AMQP-128 removed 'recoverAsync' method from RabbitBrokerOperations (interface) and RabbitBrokerAdmin (implementation)

This commit is contained in:
Mark Fisher
2011-03-29 12:38:23 -04:00
parent 27efb67420
commit 87cf18c0f1
2 changed files with 3 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2010 the original author or authors.
* Copyright 2002-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
@@ -636,10 +636,6 @@ public class RabbitBrokerAdmin implements RabbitBrokerOperations {
}
}
public void recoverAsync(boolean requeue) {
// TODO Auto-generated method stub
}
protected void initializeDefaultErlangTemplate() {
String peerNodeName = nodeName;
logger.debug("Creating jinterface connection with peerNodeName = [" + peerNodeName + "]");

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2010 the original author or authors.
* Copyright 2002-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
@@ -21,7 +21,6 @@ import java.util.regex.Pattern;
* Queues, Bindings, User, VHosts, etc. <p>Current implementations expose operations with basic type arguments via JMX.
*
* @author Mark Pollack
*
*/
public interface RabbitBrokerOperations {
@@ -31,10 +30,6 @@ public interface RabbitBrokerOperations {
public List<QueueInfo> getQueues(String virtualHost);
// Message Delivery
void recoverAsync(boolean requeue);
// User management
void addUser(String username, String password);
@@ -113,4 +108,5 @@ public interface RabbitBrokerOperations {
* @return status of the node.
*/
RabbitStatus getStatus();
}