compositePropagator<C, V> static method

TextMapPropagator<C, V> compositePropagator<C, V>(
  1. List<TextMapPropagator<C, V>> propagators
)

Creates a TextMapPropagator that delegates to propagators, injecting in list order and extracting in reverse order.

Implementation

static TextMapPropagator<C, V> compositePropagator<C, V>(
    List<TextMapPropagator<C, V>> propagators) {
  _getAndCacheOtelFactory();
  return OTelFactory.otelFactory!.compositePropagator<C, V>(propagators);
}