transaction<T> method

Future<T> transaction<T>(
  1. Future<T> transactionBlock(
    1. ManagedContext transaction
    )
)

Runs all Querys in transactionBlock within a database transaction.

Queries executed within transactionBlock will be executed as a database transaction. A transactionBlock is passed a ManagedContext that must be the target of all queries within the block. The context passed to the transactionBlock is not the same as the context the transaction was created from.

You must not use the context this method was invoked on inside the transactionBlock. Doing so will deadlock your application.

If an exception is encountered in transactionBlock, any query that has already been executed will be rolled back and this method will rethrow the exception.

You may manually rollback a query by throwing a Rollback object. This will exit the transactionBlock, roll back any changes made in the transaction, but this method will not throw. The parameter passed to Rollback's constructor will be returned from this method so that the caller can determine why the transaction was rolled back.

Example usage:

    await context.transaction((transaction) async {
       final q = new Query<Model>(transaction)
        ..values = someObject;
       await q.insert();
       ...
    });

Implementation

Future<T> transaction<T>(
    Future<T> transactionBlock(ManagedContext transaction)) {
  return persistentStore!
      .transaction(ManagedContext.childOf(this), transactionBlock);
}