Package org.jboss.cache.commands

Examples of org.jboss.cache.commands.ReversibleCommand.rollback()


      for (ListIterator i = copy.listIterator(copy.size()); i.hasPrevious();)
      {
         Object undoOp = i.previous();
         ReversibleCommand txCommand = (ReversibleCommand) undoOp;
         if (log.isDebugEnabled()) log.debug("Calling rollback() on command " + undoOp);
         txCommand.rollback();
      }
   }

   /**
    * Returns debug information about this transaction.
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.