Interface ReactiveTransactionCallback<T>

Type Parameters:
T - the return type of this work.

public interface ReactiveTransactionCallback<T>
Callback that executes operations against a given ReactiveTransactionContext.
Since:
5.2
  • Method Summary

    Modifier and Type
    Method
    Description
    Executes all given operations against the same transaction context.
  • Method Details

    • execute

      T execute(ReactiveTransactionContext context)
      Executes all given operations against the same transaction context.
      Parameters:
      context - the transaction context to use.
      Returns:
      result object or null if none.