Class: Maintenance::VariantGroupBackfill::Result
- Inherits:
-
Data
- Object
- Data
- Maintenance::VariantGroupBackfill::Result
- Defined in:
- app/services/maintenance/variant_group_backfill.rb
Overview
Backfill result counters.
Instance Attribute Summary collapse
-
#groups_created ⇒ Object
readonly
Returns the value of attribute groups_created.
-
#log ⇒ Object
readonly
Returns the value of attribute log.
-
#members_added ⇒ Object
readonly
Returns the value of attribute members_added.
-
#skipped ⇒ Object
readonly
Returns the value of attribute skipped.
-
#variations_linked ⇒ Object
readonly
Returns the value of attribute variations_linked.
Instance Method Summary collapse
-
#initialize(groups_created: 0, members_added: 0, variations_linked: 0, skipped: [], log: []) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(groups_created: 0, members_added: 0, variations_linked: 0, skipped: [], log: []) ⇒ Result
Returns a new instance of Result.
41 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 41 def initialize(groups_created: 0, members_added: 0, variations_linked: 0, skipped: [], log: []) = super |
Instance Attribute Details
#groups_created ⇒ Object (readonly)
Returns the value of attribute groups_created
35 36 37 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 35 def groups_created @groups_created end |
#log ⇒ Object (readonly)
Returns the value of attribute log
35 36 37 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 35 def log @log end |
#members_added ⇒ Object (readonly)
Returns the value of attribute members_added
35 36 37 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 35 def members_added @members_added end |
#skipped ⇒ Object (readonly)
Returns the value of attribute skipped
35 36 37 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 35 def skipped @skipped end |
#variations_linked ⇒ Object (readonly)
Returns the value of attribute variations_linked
35 36 37 |
# File 'app/services/maintenance/variant_group_backfill.rb', line 35 def variations_linked @variations_linked end |