setTransactionContextPropagator method

void setTransactionContextPropagator(
  1. TransactionContextPropagator? propagator
)

Experimental: replace the request-context carrier, or remove it with null.

Implementation

void setTransactionContextPropagator(
  TransactionContextPropagator? propagator,
) {
  _ensureMutable();
  _transactionManager.setTransactionContextPropagator(propagator);
}