suspendTransactionAsync

suspend fun <T> suspendTransactionAsync(context: CoroutineContext? = null, db: R2dbcDatabase? = null, transactionIsolation: IsolationLevel? = null, readOnly: Boolean? = null, statement: suspend R2dbcTransaction.() -> T): Deferred<T>

Deprecated (with error)

This method overload will be removed in release 1.0.0. It should be replaced with either overloadthat does not take a `CoroutineContext` as an argument, and that is wrapped with `async { }`.