MediaWiki master
ContextPropagatorInterface.php
Go to the documentation of this file.
1<?php
2namespace Wikimedia\Telemetry;
3
18 public function inject( ?SpanContext $spanContext, array $carrier ): array;
19
23 public function extract( array $carrier ): ?SpanContext;
24}
Data transfer object holding data associated with a given span.
Interface for classes to serialize and deserialize SpanContexts to and from implementation-specific a...
inject(?SpanContext $spanContext, array $carrier)
Inject the given SpanContext into the given carrier.
extract(array $carrier)
Attempt to extract a SpanContext from the given carrier.