Package org.jboss.jbossts.qa.ArjunaCore.AbstractRecord.CrashRecovery.impl

Examples of org.jboss.jbossts.qa.ArjunaCore.AbstractRecord.CrashRecovery.impl.BasicAbstractRecord


      }

      if (mCorrect)
      {
        RecoveryTransaction tx = new RecoveryTransaction(new Uid(txId));
        BasicAbstractRecord bar = new BasicAbstractRecord();

        tx.doCommit();

        if (bar.getValue() == mMaxIteration * mNumberOfResources)
        {
          tx = new RecoveryTransaction(new Uid(txId));

          if (tx.activate())  // should generate a warning message
          {
            Debug("Error transaction log is still available!");

            mCorrect = false;
          }
        }
        else
        {
          Debug("Error restored state is " + bar.getValue());
        }
      }

      qaAssert(mCorrect);
    }
View Full Code Here

TOP

Related Classes of org.jboss.jbossts.qa.ArjunaCore.AbstractRecord.CrashRecovery.impl.BasicAbstractRecord

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.