Transactions DSL
DSL context for defining transactional operations with automatic rollback on failure. This class manages a list of rollback actions that will be executed in reverse order if an error occurs.
Functions
Link copied to clipboard
suspend fun <T> TransactionsDSL.rollableBackOperation(rollback: suspend RollbackContext<T>.() -> Unit, action: suspend () -> T): T