Transactable Protocol Reference
| Declared in | Transactable.h | 
|---|
– beginTransaction
required method
	Create new transaction entry.
- (TransactionId *)beginTransactionReturn Value
Unique id of created transaction.
Discussion
Create new transaction entry.
Declared In
Transactable.h
– commitTransactionWithId:
required method
	Submit the transaction
- (void)commitTransactionWithId:(TransactionId *)trxIdParameters
| trxId | The unique identifier of the transaction which should be submitted. | 
|---|
Discussion
Submit the transaction
Declared In
Transactable.h
– rollbackTransactionWithId:
required method
	Revert the transaction
- (void)rollbackTransactionWithId:(TransactionId *)trxIdParameters
| trxId | The unique identifier of the transaction which should be reverted. | 
|---|
Discussion
Revert the transaction
Declared In
Transactable.h