Class: Contrek::Concurrent::VerticalMerger
- Defined in:
- lib/contrek/finder/concurrent/vertical_merger.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Merger
Attributes included from Poolable
Attributes inherited from Finder
Instance Method Summary collapse
Methods inherited from Merger
Methods included from Poolable
#enqueue!, #initialize, #wait!
Methods inherited from Finder
Constructor Details
This class inherits a constructor from Contrek::Concurrent::Merger
Instance Method Details
#add_tile(result) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/contrek/finder/concurrent/vertical_merger.rb', line 6 def add_tile(result) transpose(result) if @tiles.size > 0 translate(result, @current_x) end adjust(result) super end |
#process_info(flush: false) ⇒ Object
15 16 17 |
# File 'lib/contrek/finder/concurrent/vertical_merger.rb', line 15 def process_info(flush: false) transpose(super()) end |