Examples of ArjunaTransactionImple


Examples of com.arjuna.ats.internal.jts.orbspecific.coordinator.ArjunaTransactionImple

    ServerControl toReturn = null;

    try
    {
      Control handle = parent.getControl();
      ArjunaTransactionImple tranHandle = parent.getImplHandle();

      toReturn = new ServerControl(actUid, handle, tranHandle, realCoord,
          realTerm);

      handle = null;
View Full Code Here

Examples of com.arjuna.ats.internal.jts.orbspecific.coordinator.ArjunaTransactionImple

      System.exit(0);
        }
    }
      }
     
      ArjunaTransactionImple tx = null;
     
      // Run ten interations first.

      for (int i = 0; i < 10; i++)
      {
    tx = new ArjunaTransactionImple((Control) null, (ArjunaTransactionImple) null);

    if (doCommit)
        tx.commit(true);
    else
        tx.rollback();
      }

      // Record the start time.

      Date startTime = new Date();

      // Run 1000 interations.
     
      for (int i = 0; i < iters; i++)
      {
    tx = new ArjunaTransactionImple((Control) null, (ArjunaTransactionImple) null);

    if (doCommit)
        tx.commit(true);
    else
        tx.rollback();
      }

      // Record the end time.

      Date endTime = new Date();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.