Package nexj.core.rpc.file.ra.tx

Examples of nexj.core.rpc.file.ra.tx.FileJournalRecordDelete


         {
            GenericJournalRecord operationRecord;

            if (info.isLastOpIsDelete())
            {
               operationRecord = new FileJournalRecordDelete(xid,
                  info.getStageTwoFile().getAbsolutePath(), info.getTargetFile()
                  );
            }
            else
            {
View Full Code Here


                  if (bRecovery)
                  {
                     throw new XAException(XAException.XA_HEURRB);
                  }
                 
                  FileJournalRecordDelete delete = (FileJournalRecordDelete)opRecord;
                  LockableFile target = delete.getFileHandle();
                 
                  if (target != null)
                  {
                     target.closeAndDelete();
                  }
View Full Code Here

TOP

Related Classes of nexj.core.rpc.file.ra.tx.FileJournalRecordDelete

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.