How to start a transaction without stopping a previously started one?
Any code like this throws exception
try (Transaction tx = Ignition.ignite().transactions().txStart()) {
...
try (Transaction tx = Ignition.ignite().transactions().txStart()) {
...
}
...
}
Any Java example or a link would be helpful.