Class: Atatus::TraceContext::Tracestate::Entry Private

Inherits:
Object
  • Object
show all
Defined in:
lib/atatus/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.



26
27
28
29
# File 'lib/atatus/trace_context/tracestate.rb', line 26

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.



31
32
33
# File 'lib/atatus/trace_context/tracestate.rb', line 31

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.



31
32
33
# File 'lib/atatus/trace_context/tracestate.rb', line 31

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.



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

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