站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档

XAConnection (JBoss J2EE API) - JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档


javax.jms
Interface XAConnection

All Superinterfaces:
Connection
All Known Subinterfaces:
XAQueueConnection, XATopicConnection

public interface XAConnection
extends Connection

The XAConnection interface extends the capability of Connection by providing an XASession (optional).

The XAConnection 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:
XAQueueConnection, XATopicConnection

Method Summary
 Session createSession(boolean transacted, int acknowledgeMode)
          Creates an Session object.
 XASession createXASession()
          Creates an XASession object.
 
Methods inherited from interface javax.jms.Connection
close, createConnectionConsumer, createDurableConnectionConsumer, getClientID, getExceptionListener, getMetaData, setClientID, setExceptionListener, start, stop
 

Method Detail

createXASession

public XASession createXASession()
                          throws JMSException
Creates an XASession object.

Returns:
a newly created XASession
Throws:
JMSException - if the XAConnection object fails to create an XASession due to some internal error.
Since:
1.1

createSession

public Session createSession(boolean transacted,
                             int acknowledgeMode)
                      throws JMSException
Creates an Session object.

Specified by:
createSession in interface Connection
Parameters:
transacted - usage undefined
acknowledgeMode - usage undefined
Returns:
a Session object
Throws:
JMSException - if the XAConnection object fails to create an Session due to some internal error.
Since:
1.1
See Also:
Session.AUTO_ACKNOWLEDGE, Session.CLIENT_ACKNOWLEDGE, Session.DUPS_OK_ACKNOWLEDGE


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.