Package com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.coordinator

Examples of com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.coordinator.ServerTransaction


public class SubordinateAtomicTransaction extends com.arjuna.ats.internal.jta.transaction.jts.subordinate.SubordinateAtomicTransaction
{

  public SubordinateAtomicTransaction (Uid actId, Xid xid, int timeout)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId, xid))));
   
    // add this transaction to the reaper list.
   
    if (timeout > 0)
    {
View Full Code Here


   * @param actId transaction to be recovered.
   */
 
  public SubordinateAtomicTransaction (Uid actId)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId))));
  }
View Full Code Here

 
  public final Xid getXid ()
  {
    try
    {
      ServerTransaction tx = (ServerTransaction) super._theAction.getImple().getImplHandle();
     
      return tx.getXid();
    }
    catch (Exception ex)
    {
      ex.printStackTrace();
    }
View Full Code Here

public class SubordinateAtomicTransaction extends com.arjuna.ats.internal.jta.transaction.jts.subordinate.SubordinateAtomicTransaction
{

  public SubordinateAtomicTransaction (Uid actId, Xid xid, int timeout)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId, xid))));
   
    // add this transaction to the reaper list.
   
    if (timeout > 0)
    {
View Full Code Here

   * @param actId transaction to be recovered.
   */
 
  public SubordinateAtomicTransaction (Uid actId)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId))));
  }
View Full Code Here

 
  public final Xid getXid ()
  {
    try
    {
      ServerTransaction tx = (ServerTransaction) super._theAction.getImple().getImplHandle();
     
      return tx.getXid();
    }
    catch (Exception ex)
    {
      ex.printStackTrace();
    }
View Full Code Here

public class SubordinateAtomicTransaction extends com.arjuna.ats.internal.jta.transaction.jts.subordinate.SubordinateAtomicTransaction
{

  public SubordinateAtomicTransaction (Uid actId, Xid xid, int timeout)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId, xid))));
   
    // add this transaction to the reaper list.
   
    if (timeout > 0)
    {
View Full Code Here

   * @param actId transaction to be recovered.
   */
 
  public SubordinateAtomicTransaction (Uid actId)
  {
    super(new ServerControlWrapper(new ServerControl(new ServerTransaction(actId))));
  }
View Full Code Here

 
  public final Xid getXid ()
  {
    try
    {
      ServerTransaction tx = (ServerTransaction) super._theAction.getImple().getImplHandle();
     
      return tx.getXid();
    }
    catch (Exception ex)
    {
      ex.printStackTrace();
    }
View Full Code Here

TOP

Related Classes of com.arjuna.ats.internal.jta.transaction.jts.subordinate.jca.coordinator.ServerTransaction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.