Sha256: 68fea2d0b76f5ebfee477e537cc24917ac586a9bf39b815285a6593e6e880194
Contents?: true
Size: 811 Bytes
Versions: 16
Compression:
Stored size: 811 Bytes
Contents
# typed: false module Datadog module OpenTracer # OpenTracing propagator for Datadog::OpenTracer::Tracer # @abstract # @public_api module Propagator # Inject a SpanContext into the given carrier # # @param span_context [SpanContext] # @param carrier [Carrier] A carrier object of the type dictated by the specified `format` def inject(span_context, carrier) raise NotImplementedError end # Extract a SpanContext in the given format from the given carrier. # # @param carrier [Carrier] A carrier object of the type dictated by the specified `format` # @return [SpanContext, nil] the extracted SpanContext or nil if none could be found def extract(carrier) raise NotImplementedError end end end end
Version data entries
16 entries across 16 versions & 1 rubygems