Class: LaunchDarkly::Impl::Evaluator::EvalResult

Inherits:
Struct
  • Object
show all
Defined in:
lib/ldclient-rb/impl/evaluator.rb

Overview

Used internally to hold an evaluation result and the events that were generated from prerequisites. The ‘detail` property is an EvaluationDetail. The `events` property can be either an array of feature request events or nil.

Since:

  • 5.5.0

Instance Attribute Summary collapse

Instance Attribute Details

#detailObject

Returns the value of attribute detail

Returns:

  • (Object)

    the current value of detail



28
29
30
# File 'lib/ldclient-rb/impl/evaluator.rb', line 28

def detail
  @detail
end

#eventsObject

Returns the value of attribute events

Returns:

  • (Object)

    the current value of events



28
29
30
# File 'lib/ldclient-rb/impl/evaluator.rb', line 28

def events
  @events
end