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

#kind, #timestamp, #user

Instance Method Summary collapse

Constructor Details

#initialize(eval_event) ⇒ DebugEvent

Returns a new instance of DebugEvent.

Since:

  • 5.5.0



82
83
84
85
# File 'lib/ldclient-rb/impl/event_types.rb', line 82

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

Instance Attribute Details

#eval_eventObject (readonly)

Since:

  • 5.5.0



87
88
89
# File 'lib/ldclient-rb/impl/event_types.rb', line 87

def eval_event
  @eval_event
end