Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.store;
import java.io.IOException;
import org.apache.activemq.broker.ConnectionContext;
import org.apache.activemq.command.ActiveMQDestination;
import org.apache.activemq.command.Message;
import org.apache.activemq.command.MessageAck;
import org.apache.activemq.command.MessageId;
import org.apache.activemq.command.SubscriptionInfo;
import org.apache.activemq.usage.MemoryUsage;
/**
* A simple proxy that delegates to another MessageStore.
*/
public class ProxyTopicMessageStore implements TopicMessageStore {
final TopicMessageStore delegate;
public ProxyTopicMessageStore(TopicMessageStore delegate) {
this.delegate = delegate;
}
public MessageStore getDelegate() {
return delegate;
}
@Override
public void addMessage(ConnectionContext context, Message message) throws IOException {
delegate.addMessage(context, message);
}
@Override
public void addMessage(ConnectionContext context, Message message, boolean canOptimizeHint) throws IOException {
delegate.addMessage(context, message, canOptimizeHint);
}
@Override
public Message getMessage(MessageId identity) throws IOException {
return delegate.getMessage(identity);
}
@Override
public void recover(MessageRecoveryListener listener) throws Exception {
delegate.recover(listener);
}
@Override
public void removeAllMessages(ConnectionContext context) throws IOException {
delegate.removeAllMessages(context);
}
@Override
public void removeMessage(ConnectionContext context, MessageAck ack) throws IOException {
delegate.removeMessage(context, ack);
}
@Override
public void start() throws Exception {
delegate.start();
}
@Override
public void stop() throws Exception {
delegate.stop();
}
@Override
public SubscriptionInfo lookupSubscription(String clientId, String subscriptionName) throws IOException {
return delegate.lookupSubscription(clientId, subscriptionName);
}
@Override
public void acknowledge(ConnectionContext context, String clientId, String subscriptionName,
MessageId messageId, MessageAck ack) throws IOException {
delegate.acknowledge(context, clientId, subscriptionName, messageId, ack);
}
@Override
public void addSubscription(SubscriptionInfo subscriptionInfo, boolean retroactive) throws IOException {
delegate.addSubscription(subscriptionInfo, retroactive);
}
@Override
public void deleteSubscription(String clientId, String subscriptionName) throws IOException {
delegate.deleteSubscription(clientId, subscriptionName);
}
@Override
public void recoverSubscription(String clientId, String subscriptionName, MessageRecoveryListener listener)
throws Exception {
delegate.recoverSubscription(clientId, subscriptionName, listener);
}
@Override
public void recoverNextMessages(String clientId, String subscriptionName, int maxReturned,
MessageRecoveryListener listener) throws Exception {
delegate.recoverNextMessages(clientId, subscriptionName, maxReturned, listener);
}
@Override
public void resetBatching(String clientId, String subscriptionName) {
delegate.resetBatching(clientId, subscriptionName);
}
@Override
public ActiveMQDestination getDestination() {
return delegate.getDestination();
}
@Override
public SubscriptionInfo[] getAllSubscriptions() throws IOException {
return delegate.getAllSubscriptions();
}
@Override
public void setMemoryUsage(MemoryUsage memoryUsage) {
delegate.setMemoryUsage(memoryUsage);
}
@Override
public int getMessageCount(String clientId, String subscriberName) throws IOException {
return delegate.getMessageCount(clientId, subscriberName);
}
@Override
public int getMessageCount() throws IOException {
return delegate.getMessageCount();
}
@Override
public long getMessageSize() throws IOException {
return delegate.getMessageSize();
}
@Override
public void recoverNextMessages(int maxReturned, MessageRecoveryListener listener) throws Exception {
delegate.recoverNextMessages(maxReturned, listener);
}
@Override
public void dispose(ConnectionContext context) {
delegate.dispose(context);
}
@Override
public void resetBatching() {
delegate.resetBatching();
}
@Override
public void setBatch(MessageId messageId) throws Exception {
delegate.setBatch(messageId);
}
@Override
public boolean isEmpty() throws Exception {
return delegate.isEmpty();
}
@Override
public ListenableFuture