Context ctx = (Context) o;
ctx.checkPoint ("commit:" + trace);
}
public void abort (long id, Serializable o) {
Context ctx = (Context) o;
ctx.checkPoint ("abort:" + trace);
}
public int prepareForAbort (long id, Serializable o) {
Context ctx = (Context) o;
ctx.checkPoint ("prepareForAbort:" + trace);
return PREPARED | READONLY;