byte[] changeId = new byte[bb.remaining()];
bb.get(changeId);
changeIds.add(changeId);
}
try {
return new TBoolean(txManager.canCommit(ConverterUtils.unwrap(tx), changeIds));
} catch (TransactionNotInProgressException e) {
throw new TTransactionNotInProgressException(e.getMessage());
}
}