Class: Driskell::Listen::QueueOptimizer
- Inherits:
-
Object
- Object
- Driskell::Listen::QueueOptimizer
- Defined in:
- lib/driskell-listen/queue_optimizer.rb
Defined Under Namespace
Classes: Config
Instance Method Summary collapse
-
#initialize(config) ⇒ QueueOptimizer
constructor
A new instance of QueueOptimizer.
- #smoosh_changes(changes) ⇒ Object
Constructor Details
#initialize(config) ⇒ QueueOptimizer
Returns a new instance of QueueOptimizer.
30 31 32 |
# File 'lib/driskell-listen/queue_optimizer.rb', line 30 def initialize(config) @config = config end |
Instance Method Details
#smoosh_changes(changes) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/driskell-listen/queue_optimizer.rb', line 22 def smoosh_changes(changes) # TODO: adapter could be nil at this point (shutdown) = changes.group_by do |_, _, _, _, | ( || {})[:cookie] end _squash_changes(()) end |