Methods |
public
|
__construct(): void
Create a new database transactions manager instance.
Create a new database transactions manager instance.
|
#
|
public
|
begin(string $connection, int $level): void
Start a new database transaction.
Start a new database transaction.
|
#
|
public
|
commit(string $connection, int $levelBeingCommitted, int $newTransactionLevel): array
Commit the root database transaction and execute callbacks.
Commit the root database transaction and execute callbacks.
|
#
|
public
|
stageTransactions(string $connection, int $levelBeingCommitted): void
Move relevant pending transactions to a committed state.
Move relevant pending transactions to a committed state.
|
#
|
public
|
rollback(string $connection, int $newTransactionLevel): void
Rollback the active database transaction.
Rollback the active database transaction.
|
#
|
protected
|
removeAllTransactionsForConnection(string $connection): void
Remove all pending, completed, and current transactions for the given connection name.
Remove all pending, completed, and current transactions for the given connection name.
|
#
|
protected
|
removeCommittedTransactionsThatAreChildrenOf(DatabaseTransactionRecord $transaction): void
Remove all transactions that are children of the given transaction.
Remove all transactions that are children of the given transaction.
|
#
|
public
|
addCallback(callable $callback): void
Register a transaction callback.
Register a transaction callback.
|
#
|
public
|
callbackApplicableTransactions(): Collection<int, DatabaseTransactionRecord>
Get the transactions that are applicable to callbacks.
Get the transactions that are applicable to callbacks.
|
#
|
public
|
afterCommitCallbacksShouldBeExecuted(int $level): bool
Determine if after commit callbacks should be executed for the given transaction level.
Determine if after commit callbacks should be executed for the given transaction level.
|
#
|
public
|
getPendingTransactions(): Collection
Get all of the pending transactions.
Get all of the pending transactions.
|
#
|
public
|
getCommittedTransactions(): Collection
Get all of the committed transactions.
Get all of the committed transactions.
|
#
|