All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.mq.JMSTopicSubscriber Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright 2008 biaoping.yin
 *
 *  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
 *
 *      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.frameworkset.mq;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.Topic;
import javax.jms.TopicSubscriber;

/**
 * 

* Title: JMSTopicSubscriber.java *

*

* Description: *

*

* bboss workgroup *

*

* Copyright (c) 2007 *

* * @Date 2010-1-18 11:35:12 * @author biaoping.yin * @version 1.0 */ public class JMSTopicSubscriber implements TopicSubscriber { TopicSubscriber consumer; ReceiveDispatcher receivor; public JMSTopicSubscriber(TopicSubscriber consumer, ReceiveDispatcher receivor) { this.consumer = consumer; this.receivor = receivor; } public boolean getNoLocal() throws JMSException { return consumer.getNoLocal(); } public Topic getTopic() throws JMSException { return consumer.getTopic(); } public void close() throws JMSException { consumer.close(); } public MessageListener getMessageListener() throws JMSException { return consumer.getMessageListener(); } public String getMessageSelector() throws JMSException { return consumer.getMessageSelector(); } public Message receive() throws JMSException { return consumer.receive(); } public Message receive(long arg0) throws JMSException { // TODO Auto-generated method stub return consumer.receive(arg0); } public Message receiveNoWait() throws JMSException { // TODO Auto-generated method stub return consumer.receiveNoWait(); } public void setMessageListener(MessageListener arg0) throws JMSException { if (arg0 instanceof JMSMessageListener) { JMSMessageListener l = (JMSMessageListener) arg0; l.setReceivor(this.receivor); } this.consumer.setMessageListener(arg0); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy