KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > walend > jmsbridge > TopicBridge


1 package net.walend.jmsbridge;
2
3 import javax.jms.MessageProducer JavaDoc;
4 import javax.jms.MessageConsumer JavaDoc;
5 import javax.jms.Session JavaDoc;
6 import javax.jms.JMSException JavaDoc;
7 import javax.jms.MessageListener JavaDoc;
8 import javax.jms.ExceptionListener JavaDoc;
9 import javax.jms.Message JavaDoc;
10 import javax.jms.ObjectMessage JavaDoc;
11 import javax.jms.TopicSubscriber JavaDoc;
12 import javax.jms.TopicPublisher JavaDoc;
13 import javax.jms.TopicSession JavaDoc;
14
15
16 /**
17 TopicBridge is a simple bridge from the TopicSubscriber of one JMS implementation to the TopicPublisher of another.
18
19 @author <a HREF="http://walend.net">David Walend</a> <a HREF="mailto:david@walend.net">david@walend.net</a>
20  */

21
22 public class TopicBridge
23     extends AbstractBridge
24 {
25     public TopicBridge(TopicSubscriber JavaDoc source,TopicPublisher JavaDoc sink,TopicSession JavaDoc sinkSession,ExceptionListener JavaDoc exceptionListener)
26         throws JMSException JavaDoc
27     {
28         super(source,sink,sinkSession,exceptionListener);
29     }
30
31     protected MessageListener JavaDoc createBridgeListener(MessageProducer JavaDoc sink,Session JavaDoc sinkSession,ExceptionListener JavaDoc exceptionListener)
32     {
33         return new TopicBridgeListener((TopicPublisher JavaDoc)sink,(TopicSession JavaDoc)sinkSession,exceptionListener);
34     }
35
36
37     protected class TopicBridgeListener
38         extends BridgeListener
39     {
40         private TopicPublisher JavaDoc publisher;
41
42         public TopicBridgeListener(TopicPublisher JavaDoc sink,TopicSession JavaDoc sinkSession,ExceptionListener JavaDoc exceptionListener)
43         {
44             super(sinkSession,exceptionListener);
45             this.publisher = sink;
46         }
47
48         /**
49 Publish the message to the sink.
50          */

51         protected void send(Message JavaDoc message)
52             throws JMSException JavaDoc
53         {
54             publisher.publish(message);
55         }
56     }
57
58
59 }
60
61 /* Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 David Walend
62 All rights reserved.
63
64 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
65
66 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
67
68 Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
69
70 Neither the name of the SomnifugiJMS Project, walend.net, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission from David Walend.
71
72 Credits in redistributions in source or binary forms must include a link to http://somnifugi.sourceforge.net .
73
74 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
75 The net.walend.somnifugi.sql92 package is modified code from the openmq project, https://mq.dev.java.net/ , Copyright (c) of Sun, and carries the CDDL license, repeated here: You can obtain a copy of the license at https://glassfish.dev.java.net/public/CDDLv1.0.html. See the License for the specific language governing permissions and limitations under the License.
76
77 =================================================================================
78
79 For more information and the latest version of this software, please see http://somnifugi.sourceforge.net and http://walend.net or email <a HREF="mailto:david@walend.net">david@walend.net</a>.
80  */

81
Popular Tags