![]() |
GridGain C++
|
Transactions client. More...
#include <transactions.h>
Public Member Functions | |
ClientTransactions (ignite::common::concurrent::SharedPointer< void > impl) | |
Constructor. More... | |
ClientTransactions () | |
Default constructor. | |
~ClientTransactions () | |
Destructor. | |
ClientTransaction | TxStart (TransactionConcurrency::Type concurrency=TransactionConcurrency::PESSIMISTIC, TransactionIsolation::Type isolation=TransactionIsolation::READ_COMMITTED, int64_t timeout=0, int32_t txSize=0) |
Start new transaction with completely clarify parameters. More... | |
ClientTransactions | withLabel (const std::string &lbl) |
Returns instance of. More... | |
Transactions client.
This is an entry point for Thin C++ Ignite transactions.
This class is implemented as a reference to an implementation so copying of this class instance will only create another reference to the same underlying object. Underlying object will be released automatically once all the instances are destructed.
|
inline |
Constructor.
impl | Implementation. |
|
inline |
Start new transaction with completely clarify parameters.
concurrency | Transaction concurrency. |
isolation | Transaction isolation. |
timeout | Transaction timeout. |
txSize | Number of entries participating in transaction (may be approximate). |
|
inline |
Returns instance of.
to mark each new transaction with a specified label.
label | Transaction label. |