Class: LaunchDarkly::Impl::CustomEvent Private

Inherits:
Event
  • Object
show all
Defined in:
lib/ldclient-rb/impl/event_types.rb

Overview

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.

Since:

  • 5.5.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timestamp, context, key, data = nil, metric_value = nil) ⇒ CustomEvent

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

Since:

  • 5.5.0



109
110
111
112
113
114
# File 'lib/ldclient-rb/impl/event_types.rb', line 109

def initialize(timestamp, context, key, data = nil, metric_value = nil)
  super(timestamp, context)
  @key = key
  @data = data unless data.nil?
  @metric_value = metric_value unless metric_value.nil?
end

Instance Attribute Details

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

Since:

  • 5.5.0



117
118
119
# File 'lib/ldclient-rb/impl/event_types.rb', line 117

def data
  @data
end

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

Since:

  • 5.5.0



116
117
118
# File 'lib/ldclient-rb/impl/event_types.rb', line 116

def key
  @key
end

#metric_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.

Since:

  • 5.5.0



118
119
120
# File 'lib/ldclient-rb/impl/event_types.rb', line 118

def metric_value
  @metric_value
end