You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Client transactions are supported for caches with `AtomicityMode.TRANSACTIONAL` mode.
122
+
123
+
124
+
==== Executing Transactions
125
+
126
+
127
+
To start a transaction, obtain the `ClientTransactions` object from `IgniteClient`.
128
+
`ClientTransactions` has a number of `txStart(...)` methods, each of which starts a new transaction and returns an object (`ClientTransaction`) that represents the transaction.
129
+
Use this object to commit or rollback the transaction.
Client transactions can have different concurrency modes, isolation levels, and execution timeout, which can be set for all transactions or on a per transaction basis.
150
+
151
+
You can specify the concurrency mode, isolation level, and timeout when starting an individual transaction. In this case, the provided values override the default settings.
0 commit comments