Class: Datadog::DI::Transport::Input::Request Private

Inherits:
Core::Transport::Request show all
Defined in:
lib/datadog/di/transport/input.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

Attributes inherited from Core::Transport::Request

#parcel

Instance Method Summary collapse

Constructor Details

#initialize(parcel, serialized_tags) ⇒ Request

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 Request.



17
18
19
20
21
# File 'lib/datadog/di/transport/input.rb', line 17

def initialize(parcel, serialized_tags)
  super(parcel)

  @serialized_tags = serialized_tags
end

Instance Attribute Details

#serialized_tagsObject (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.



15
16
17
# File 'lib/datadog/di/transport/input.rb', line 15

def serialized_tags
  @serialized_tags
end