Class: Kameleoon::Targeting::ExclusiveExperimentInfo Private
- Inherits:
-
Object
- Object
- Kameleoon::Targeting::ExclusiveExperimentInfo
- Defined in:
- lib/kameleoon/targeting/conditions/exclusive_experiment_condition.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #current_experiment_id ⇒ Object readonly private
- #personalizations_storage ⇒ Object readonly private
- #variations_storage ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(current_experiment_id, variations_storage, personalizations_storage) ⇒ ExclusiveExperimentInfo
constructor
private
A new instance of ExclusiveExperimentInfo.
Constructor Details
#initialize(current_experiment_id, variations_storage, personalizations_storage) ⇒ ExclusiveExperimentInfo
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ExclusiveExperimentInfo.
53 54 55 56 57 |
# File 'lib/kameleoon/targeting/conditions/exclusive_experiment_condition.rb', line 53 def initialize(current_experiment_id, variations_storage, personalizations_storage) @current_experiment_id = current_experiment_id @variations_storage = variations_storage @personalizations_storage = personalizations_storage end |
Instance Attribute Details
#current_experiment_id ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
51 52 53 |
# File 'lib/kameleoon/targeting/conditions/exclusive_experiment_condition.rb', line 51 def current_experiment_id @current_experiment_id end |
#personalizations_storage ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
51 52 53 |
# File 'lib/kameleoon/targeting/conditions/exclusive_experiment_condition.rb', line 51 def personalizations_storage @personalizations_storage end |
#variations_storage ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
51 52 53 |
# File 'lib/kameleoon/targeting/conditions/exclusive_experiment_condition.rb', line 51 def variations_storage @variations_storage end |