Sha256: 83c2d65a8dfd074dfb7adc39dfc0d805fd85da0c615a5d6713cd9fb63bc80bcd

Contents?: true

Size: 677 Bytes

Versions: 4

Compression:

Stored size: 677 Bytes

Contents

# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

module OpenTelemetry
  class Context
    module Propagation
      # The default getter module provides a common method for reading
      # a key from a carrier that implements +[]+
      module DefaultGetter
        DEFAULT_GETTER = ->(carrier, key) { carrier[key] }
        private_constant :DEFAULT_GETTER

        # Returns a callable that can read a key from a carrier that implements
        # +[]+. Useful for extract operations.
        #
        # @return [Callable]
        def default_getter
          DEFAULT_GETTER
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
opentelemetry-api-0.13.0 lib/opentelemetry/context/propagation/default_getter.rb
opentelemetry-api-0.12.1 lib/opentelemetry/context/propagation/default_getter.rb
opentelemetry-api-0.12.0 lib/opentelemetry/context/propagation/default_getter.rb
opentelemetry-api-0.11.0 lib/opentelemetry/context/propagation/default_getter.rb