Class: ElasticAPM::TraceContext::Tracestate::Entry Private

Inherits:
Object
  • Object
show all
Defined in:
lib/elastic_apm/trace_context/tracestate.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, value) ⇒ Entry

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Entry.



28
29
30
31
# File 'lib/elastic_apm/trace_context/tracestate.rb', line 28

def initialize(key, value)
  @key = key
  @value = value
end

Instance Attribute Details

#keyObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



33
34
35
# File 'lib/elastic_apm/trace_context/tracestate.rb', line 33

def key
  @key
end

#valueObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



33
34
35
# File 'lib/elastic_apm/trace_context/tracestate.rb', line 33

def value
  @value
end

Instance Method Details

#to_sObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
36
37
# File 'lib/elastic_apm/trace_context/tracestate.rb', line 35

def to_s
  "#{key}=#{value}"
end