Package javax.jms
Interface TopicConnection
-
- All Superinterfaces:
Connection
- All Known Subinterfaces:
XATopicConnection
public interface TopicConnection extends Connection
- Version:
- $Rev: 467553 $ $Date: 2006-10-25 05:01:51 +0100 (Wed, 25 Oct 2006) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionConsumercreateConnectionConsumer(Topic topic, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumercreateDurableConnectionConsumer(Topic topic, java.lang.String subscriptionName, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)TopicSessioncreateTopicSession(boolean transacted, int acknowledgeMode)-
Methods inherited from interface javax.jms.Connection
close, createConnectionConsumer, createSession, getClientID, getExceptionListener, getMetaData, setClientID, setExceptionListener, start, stop
-
-
-
-
Method Detail
-
createTopicSession
TopicSession createTopicSession(boolean transacted, int acknowledgeMode) throws JMSException
- Throws:
JMSException
-
createConnectionConsumer
ConnectionConsumer createConnectionConsumer(Topic topic, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException
- Throws:
JMSException
-
createDurableConnectionConsumer
ConnectionConsumer createDurableConnectionConsumer(Topic topic, java.lang.String subscriptionName, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException
- Specified by:
createDurableConnectionConsumerin interfaceConnection- Throws:
JMSException
-
-