Class: Traject::Indexer::AfterProcessingStep
- Inherits:
-
Object
- Object
- Traject::Indexer::AfterProcessingStep
- Defined in:
- lib/traject/indexer/step.rb
Overview
A class representing a block of logic called after processing, registered with #after_processing
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#lambda ⇒ Object
Returns the value of attribute lambda.
-
#source_location ⇒ Object
Returns the value of attribute source_location.
Instance Method Summary collapse
-
#execute ⇒ Object
after_processing steps get no args yielded to their blocks, they just are what they are.
-
#initialize(lambda, block, source_location) ⇒ AfterProcessingStep
constructor
A new instance of AfterProcessingStep.
- #inspect ⇒ Object
- #to_field_step? ⇒ Boolean
Constructor Details
#initialize(lambda, block, source_location) ⇒ AfterProcessingStep
Returns a new instance of AfterProcessingStep.
163 164 165 166 167 |
# File 'lib/traject/indexer/step.rb', line 163 def initialize(lambda, block, source_location) self.lambda = lambda self.block = block self.source_location = source_location end |
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
161 162 163 |
# File 'lib/traject/indexer/step.rb', line 161 def block @block end |
#lambda ⇒ Object
Returns the value of attribute lambda.
161 162 163 |
# File 'lib/traject/indexer/step.rb', line 161 def lambda @lambda end |
#source_location ⇒ Object
Returns the value of attribute source_location.
161 162 163 |
# File 'lib/traject/indexer/step.rb', line 161 def source_location @source_location end |
Instance Method Details
#execute ⇒ Object
after_processing steps get no args yielded to their blocks, they just are what they are.
176 177 178 179 |
# File 'lib/traject/indexer/step.rb', line 176 def execute @block.call if @block @lambda.call if @lambda end |
#inspect ⇒ Object
181 182 183 |
# File 'lib/traject/indexer/step.rb', line 181 def inspect "(after_processing at #{self.source_location}" end |
#to_field_step? ⇒ Boolean
170 171 172 |
# File 'lib/traject/indexer/step.rb', line 170 def to_field_step? false end |