KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > client > PipeTopicConnectionFactory


1 package com.ubermq.jms.client;
2
3 import com.ubermq.jms.client.unicast.*;
4
5 /**
6  * Creates a pipe-based topic connection, connected to a particular
7  * in-process message server object.<P>
8  *
9  * This connection factory is obsolete since JMS 1.1. Please use
10  * the <code>PipeConnectionFactory</code> for all future applications.
11  * This class will be removed in the future.<P>
12  *
13  * @deprecated
14  */

15 public final class PipeTopicConnectionFactory
16     extends PipeConnectionFactory
17     implements javax.jms.TopicConnectionFactory JavaDoc, java.io.Serializable JavaDoc
18 {
19     public static final long serialVersionUID = 1L;
20
21     public PipeTopicConnectionFactory(PipeEndpoint pe)
22     {
23         super(pe);
24     }
25 }
26
Popular Tags