public interface TransactionalComponent
Transactional is the application view of a set of
collection of components that together provide transactions.| Modifier and Type | Method and Description |
|---|---|
void |
abort()
Abort a transaction - finish the transaction and undo any changes (if a "write" transaction)
|
void |
begin(ReadWrite readWrite)
Start either a READ or WRITE transaction
|
void |
commit()
Commit a transaction - finish the transaction and make any changes permanent (if a "write" transaction)
|
void |
end()
Finish the transaction - if a write transaction and commit() has not been called, then abort
|
void begin(ReadWrite readWrite)
void commit()
void abort()
void end()
Licenced under the Apache License, Version 2.0