Class: LaunchDarkly::Impl::DataModelPreprocessing::FlagPreprocessed
- Inherits:
-
PreprocessedDataBase
- Object
- PreprocessedDataBase
- LaunchDarkly::Impl::DataModelPreprocessing::FlagPreprocessed
- Defined in:
- lib/ldclient-rb/impl/model/preprocessed_data.rb
Overview
Instance Attribute Summary collapse
- #fallthrough_factory ⇒ EvalResultFactoryMultiVariations readonly
- #off_result ⇒ EvalResultsForSingleVariation readonly
Instance Method Summary collapse
-
#initialize(off_result, fallthrough_factory) ⇒ FlagPreprocessed
constructor
A new instance of FlagPreprocessed.
Methods inherited from PreprocessedDataBase
Constructor Details
#initialize(off_result, fallthrough_factory) ⇒ FlagPreprocessed
Returns a new instance of FlagPreprocessed.
67 68 69 70 |
# File 'lib/ldclient-rb/impl/model/preprocessed_data.rb', line 67 def initialize(off_result, fallthrough_factory) @off_result = off_result @fallthrough_factory = fallthrough_factory end |
Instance Attribute Details
#fallthrough_factory ⇒ EvalResultFactoryMultiVariations (readonly)
75 76 77 |
# File 'lib/ldclient-rb/impl/model/preprocessed_data.rb', line 75 def fallthrough_factory @fallthrough_factory end |
#off_result ⇒ EvalResultsForSingleVariation (readonly)
73 74 75 |
# File 'lib/ldclient-rb/impl/model/preprocessed_data.rb', line 73 def off_result @off_result end |