Example #1
0
 @Override
 public void createAndUpdateSubscriptionGroupConfig(String addr, SubscriptionGroupConfig config)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.createAndUpdateSubscriptionGroupConfig(addr, config);
 }
Example #2
0
 @Override
 public long minOffset(MessageQueue mq) throws MQClientException {
   return defaultMQAdminExtImpl.minOffset(mq);
 }
Example #3
0
 @Override
 public MessageExt viewMessage(String msgId)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.viewMessage(msgId);
 }
Example #4
0
 @Override
 public Map<MessageQueue, Long> resetOffsetByTimestamp(
     String topic, String group, long timestamp, boolean isForce)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.resetOffsetByTimestamp(topic, group, timestamp, isForce);
 }
Example #5
0
 @Override
 public void createTopic(String key, String newTopic, int queueNum) throws MQClientException {
   defaultMQAdminExtImpl.createTopic(key, newTopic, queueNum);
 }
Example #6
0
 @Override
 public void deleteIpsByProjectGroup(String projectGroup)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.deleteIpsByProjectGroup(projectGroup);
 }
Example #7
0
 @Override
 public KVTable getKVListByNamespace(String namespace)
     throws RemotingException, MQClientException, InterruptedException {
   return defaultMQAdminExtImpl.getKVListByNamespace(namespace);
 }
Example #8
0
 @Override
 public TopicRouteData examineTopicRouteInfo(String topic)
     throws RemotingException, MQClientException, InterruptedException {
   return defaultMQAdminExtImpl.examineTopicRouteInfo(topic);
 }
Example #9
0
 @Override
 public void putKVConfig(String namespace, String key, String value) {
   defaultMQAdminExtImpl.putKVConfig(namespace, key, value);
 }
Example #10
0
 @Override
 public ConsumeStats examineConsumeStats(String consumerGroup)
     throws RemotingException, MQClientException, InterruptedException, MQBrokerException {
   return defaultMQAdminExtImpl.examineConsumeStats(consumerGroup);
 }
Example #11
0
 @Override
 public ClusterInfo examineBrokerClusterInfo()
     throws InterruptedException, RemotingConnectException, RemotingTimeoutException,
         RemotingSendRequestException, MQBrokerException {
   return defaultMQAdminExtImpl.examineBrokerClusterInfo();
 }
Example #12
0
 @Override
 public TopicStatsTable examineTopicStats(String topic)
     throws RemotingException, MQClientException, InterruptedException, MQBrokerException {
   return defaultMQAdminExtImpl.examineTopicStats(topic);
 }
Example #13
0
 @Override
 public TopicConfig examineTopicConfig(String addr, String topic) {
   return defaultMQAdminExtImpl.examineTopicConfig(addr, topic);
 }
Example #14
0
 @Override
 public SubscriptionGroupConfig examineSubscriptionGroupConfig(String addr, String group) {
   return defaultMQAdminExtImpl.examineSubscriptionGroupConfig(addr, group);
 }
Example #15
0
 @Override
 public void deleteKvConfig(String namespace, String key)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.deleteKvConfig(namespace, key);
 }
Example #16
0
 @Override
 public String getKVConfig(String namespace, String key) {
   return defaultMQAdminExtImpl.getKVConfig(namespace, key);
 }
Example #17
0
 @Override
 public String getIpsByProjectGroup(String projectGroup)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.getIpsByProjectGroup(projectGroup);
 }
Example #18
0
 @Override
 public ConsumerConnection examineConsumerConnectionInfo(String consumerGroup)
     throws InterruptedException, MQBrokerException, RemotingException, MQClientException {
   return defaultMQAdminExtImpl.examineConsumerConnectionInfo(consumerGroup);
 }
Example #19
0
 public List<RollbackStats> resetOffsetByTimestampOld(
     String consumerGroup, String topic, long timestamp, boolean force)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.resetOffsetByTimestampOld(consumerGroup, topic, timestamp, force);
 }
Example #20
0
 @Override
 public ProducerConnection examineProducerConnectionInfo(String producerGroup, final String topic)
     throws RemotingException, MQClientException, InterruptedException, MQBrokerException {
   return defaultMQAdminExtImpl.examineProducerConnectionInfo(producerGroup, topic);
 }
Example #21
0
 @Override
 public void updateBrokerConfig(String brokerAddr, Properties properties)
     throws RemotingConnectException, RemotingSendRequestException, RemotingTimeoutException,
         UnsupportedEncodingException, InterruptedException, MQBrokerException {
   defaultMQAdminExtImpl.updateBrokerConfig(brokerAddr, properties);
 }
Example #22
0
 @Override
 public int wipeWritePermOfBroker(final String namesrvAddr, String brokerName)
     throws RemotingCommandException, RemotingConnectException, RemotingSendRequestException,
         RemotingTimeoutException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.wipeWritePermOfBroker(namesrvAddr, brokerName);
 }
Example #23
0
 @Override
 public Map<String, Map<MessageQueue, Long>> getConsumeStatus(
     String topic, String group, String clientAddr)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   return defaultMQAdminExtImpl.getConsumeStatus(topic, group, clientAddr);
 }
Example #24
0
 @Override
 public void deleteTopicInNameServer(Set<String> addrs, String topic)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.deleteTopicInNameServer(addrs, topic);
 }
Example #25
0
 @Override
 public long searchOffset(MessageQueue mq, long timestamp) throws MQClientException {
   return defaultMQAdminExtImpl.searchOffset(mq, timestamp);
 }
Example #26
0
 @Override
 public void deleteSubscriptionGroup(String addr, String groupName)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.deleteSubscriptionGroup(addr, groupName);
 }
Example #27
0
 @Override
 public long earliestMsgStoreTime(MessageQueue mq) throws MQClientException {
   return defaultMQAdminExtImpl.earliestMsgStoreTime(mq);
 }
Example #28
0
 @Override
 public void createAndUpdateKvConfig(String namespace, String key, String value)
     throws RemotingException, MQBrokerException, InterruptedException, MQClientException {
   defaultMQAdminExtImpl.createAndUpdateKvConfig(namespace, key, value);
 }
Example #29
0
 @Override
 public QueryResult queryMessage(String topic, String key, int maxNum, long begin, long end)
     throws MQClientException, InterruptedException {
   return defaultMQAdminExtImpl.queryMessage(topic, key, maxNum, begin, end);
 }
Example #30
0
 @Override
 public void shutdown() {
   defaultMQAdminExtImpl.shutdown();
 }