Class: LaunchDarkly::Impl::DebugEvent

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, #exclude_from_summaries, #sampling_ratio, #timestamp

Instance Method Summary collapse

Constructor Details

#initialize(eval_event) ⇒ DebugEvent

Returns a new instance of DebugEvent.

Since:

  • 5.5.0



128
129
130
131
# File 'lib/ldclient-rb/impl/event_types.rb', line 128

def initialize(eval_event)
  super(eval_event.timestamp, eval_event.context)
  @eval_event = eval_event
end

Instance Attribute Details

#eval_eventObject (readonly)

Since:

  • 5.5.0



133
134
135
# File 'lib/ldclient-rb/impl/event_types.rb', line 133

def eval_event
  @eval_event
end