Package javax.jms
Interface XATopicConnection
- All Superinterfaces:
Connection,TopicConnection,XAConnection
An
XATopicConnection provides the same create options as
TopicConnection (optional). The Topic connections created are
transactional.
The XATopicConnection interface is optional. JMS providers
are not required to support this interface. This interface is for
use by JMS providers to support transactional environments.
Client programs are strongly encouraged to use the transactional support
available in their environment, rather than use these XA
interfaces directly.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncreateTopicSession(boolean transacted, int acknowledgeMode) Creates anXATopicSessionobject.Creates anXATopicSessionobject.Methods inherited from interface javax.jms.Connection
close, createConnectionConsumer, getClientID, getExceptionListener, getMetaData, setClientID, setExceptionListener, start, stopMethods inherited from interface javax.jms.TopicConnection
createConnectionConsumer, createDurableConnectionConsumerMethods inherited from interface javax.jms.XAConnection
createSession, createXASession
-
Method Details
-
createXATopicSession
Creates anXATopicSessionobject.- Returns:
- a newly created XA topic session
- Throws:
JMSException- if theXATopicConnectionobject fails to create an XA topic session due to some internal error.
-
createTopicSession
Creates anXATopicSessionobject.- Specified by:
createTopicSessionin interfaceTopicConnection- Parameters:
transacted- usage undefinedacknowledgeMode- usage undefined- Returns:
- a newly created XA topic session
- Throws:
JMSException- if theXATopicConnectionobject fails to create an XA topic session due to some internal error.- See Also:
-