ITransaction extends IRunnable
A transaction for some storage engine.
Table of Contents
beginTransaction() | Begins a transaction | void |
---|---|---|
rollBack() | Rolls back an uncommitted transaction | void |
commit() | Commits a transaction after beginTransaction has been called | void |
run() | Execute the supplied closure | void |
Methods
beginTransaction()
Begins a transaction
public
beginTransaction(
)
: void
rollBack()
Rolls back an uncommitted transaction
public
rollBack(
)
: void
commit()
Commits a transaction after beginTransaction has been called
public
commit(
)
: void
Tags
run()
Execute the supplied closure
public
run(
)
: void