protected void processMessage(TSOMessage msg) {
if (msg instanceof CommitResponse) {
CommitResponse cr = (CommitResponse) msg;
if (!cr.committed && autoFullAbort) {
try {
completeAbort(cr.startTimestamp, new SyncAbortCompleteCallback());
} catch (IOException e) {
LOG.error("Could not send Abort Complete mesagge.", e.getCause());
}
}
}