TransactionPlanResult

type TransactionPlanResult<TContext> = 
  | ParallelTransactionPlanResult<TContext>
  | SequentialTransactionPlanResult<TContext>
| SingleTransactionPlanResult<TContext>;

The result of executing a transaction plan.

This is structured as a recursive tree of results that mirrors the structure of the original transaction plan, capturing the execution status at each level.

Namely, the following result types are supported:

Type Parameters

Type ParameterDefault typeDescription
TContext extends TransactionPlanResultContextTransactionPlanResultContextThe type of the context object that may be passed along with successful results

See

On this page