suspendTransaction

suspend fun <T> suspendTransaction(db: R2dbcDatabase? = null, transactionIsolation: IsolationLevel? = db?.transactionManager?.defaultIsolationLevel, readOnly: Boolean? = db?.transactionManager?.defaultReadOnly, statement: suspend R2dbcTransaction.() -> T): T

Creates a transaction with the specified transactionIsolation and readOnly settings, then calls the statement block with this transaction as its receiver and returns the result.

Note If the database value db is not set, the value used will be either the last R2dbcDatabase instance created or the value associated with the parent transaction (if this function is invoked in an existing transaction).

Note This function catches all throwables (including errors) to ensure proper transaction rollback and resource cleanup, even in exceptional circumstances.

Return

The final result of the statement block.

Parameters

db

Database to use for the transaction. Defaults to null.

transactionIsolation

Transaction isolation level. Defaults to db.transactionManager.defaultIsolationLevel.

readOnly

Whether the transaction should be read-only. Defaults to db.transactionManager.defaultReadOnly.

Throws

If no database is available

R2dbcException

If a database error occurs and retry attempts are exhausted

If any other error occurs during execution