Example usage for javax.transaction.xa XAResource interface-usage

List of usage examples for javax.transaction.xa XAResource interface-usage

Introduction

In this page you can find the example usage for javax.transaction.xa XAResource interface-usage.

Usage

From source file org.nuxeo.ecm.core.jca.ManagedXAResource.java

/**
 * This object maintains a dynamic xa resource so that
 * managed connections can be reused after closing sessions.
 *
 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
 *

From source file org.mule.util.xa.DefaultXASession.java

/**
 * TODO document
 */
public class DefaultXASession implements XAResource {

    /**

From source file org.nuxeo.ecm.core.storage.sql.TransactionalSession.java

/**
 * The transactional session is an {@link XAResource} for this session.
 *
 * @author Florent Guillaume
 */
public class TransactionalSession implements XAResource {

From source file org.nuxeo.ecm.core.storage.sql.jdbc.XAResourceConnectionAdapter.java

/**
 * Adapter for a simple JDBC Connection that gives it the XAResource interface,
 * without actually implementing XA (prepare does nothing).
 *
 * @since 5.7
 */

From source file org.springframework.boot.jta.narayana.DataSourceXAResourceRecoveryHelper.java

/**
 * XAResourceRecoveryHelper implementation which gets XIDs, which needs to be recovered,
 * from the database.
 *
 * @author Gytis Trikleris
 * @since 1.4.0

From source file org.apache.hadoop.hbase.client.transactional.JtaXAResource.java

/**
 * View hbase as a JTA transactional resource. This allows it to participate in transactions across multiple resources.
 */
public class JtaXAResource implements XAResource {

    static final Log LOG = LogFactory.getLog(JtaXAResource.class);

From source file org.nuxeo.ecm.core.blob.storage.impl.XASession.java

/**
 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
 *
 */
public class XASession implements XAResource, BlobStorageSession {

From source file org.bytesoft.bytejta.supports.jdbc.RecoveredResource.java

public class RecoveredResource extends LocalXAResource implements XAResource {
    static final Logger logger = LoggerFactory.getLogger(RecoveredResource.class);

    private DataSource dataSource;

    public void recoverable(Xid xid) throws XAException {

From source file org.jboss.jbossts.fileio.xalib.txdirs.dir.XAFileResourceManager.java

/**
 * This class implements methods of the standard {@link javax.transaction.xa.XAResource} interface
 * which acts like a contract between a Resource Manager and a Transaction
 * Manager.
 * <p>
 * Each instance of an <code>XAFileResourceManager</code> has its own {@link javax.transaction.xa.Xid}

From source file org.apache.slide.common.AbstractXAServiceBase.java

/**
 * Slide Service abstract implementation.
 *
 * Changes: Removed the inheritance from AbstractXAResource and pasted the code in here so we could switch to
 * using a different implementation of XidWrapper.
 *