Beispiel #1
0
 /** Rollback a transaction */
 public Handle rollback() {
   final long start = System.nanoTime();
   transactions.rollback(this);
   log.logRollbackTransaction((System.nanoTime() - start) / 1000000L, this);
   return this;
 }