Class: LaunchDarkly::Impl::CustomEvent

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

Overview

Since:

  • 5.5.0

Instance Attribute Summary collapse

Attributes inherited from Event

#context, #timestamp

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of CustomEvent.

Since:

  • 5.5.0



51
52
53
54
55
56
# File 'lib/ldclient-rb/impl/event_types.rb', line 51

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)

Since:

  • 5.5.0



59
60
61
# File 'lib/ldclient-rb/impl/event_types.rb', line 59

def data
  @data
end

#keyObject (readonly)

Since:

  • 5.5.0



58
59
60
# File 'lib/ldclient-rb/impl/event_types.rb', line 58

def key
  @key
end

#metric_valueObject (readonly)

Since:

  • 5.5.0



60
61
62
# File 'lib/ldclient-rb/impl/event_types.rb', line 60

def metric_value
  @metric_value
end