use of org.apache.ignite.IgniteTransactions in project ignite by apache.
the class IgniteCacheThreadLocalTxTest method checkNoTx.
/**
* @param node Node.
*/
private void checkNoTx(Ignite node) {
IgniteTransactions txs = node.transactions();
assertNull(txs.tx());
assertNull(((IgniteKernal) node).context().cache().context().tm().tx());
}
Aggregations