public void postRollback() throws Throwable {
// Run the postRollbackTasks
for (Iterator iter = postRollbackTasks.iterator(); iter.hasNext();) {
TransactionTask r = (TransactionTask) iter.next();
r.execute();
}
}
public String toString() {
return super.toString() + "[prePrepares=" + prePrepareTasks + "; postCommits=" + postCommitTasks