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

Instance Method Summary collapse

Constructor Details

#initialize(eval_event) ⇒ DebugEvent

Returns a new instance of DebugEvent.

Since:

  • 5.5.0



70
71
72
73
# File 'lib/ldclient-rb/impl/event_types.rb', line 70

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



75
76
77
# File 'lib/ldclient-rb/impl/event_types.rb', line 75

def eval_event
  @eval_event
end