Class: Sidekiq::DeadSet

Inherits:
JobSet show all
Defined in:
lib/sidekiq/api.rb

Instance Attribute Summary

Attributes inherited from SortedSet

#name

Instance Method Summary collapse

Methods inherited from JobSet

#delete, #each, #fetch, #find_job, #schedule

Methods inherited from SortedSet

#clear, #size

Constructor Details

#initializeDeadSet

Returns a new instance of DeadSet.



436
437
438
# File 'lib/sidekiq/api.rb', line 436

def initialize
  super 'dead'
end

Instance Method Details

#retry_allObject



440
441
442
443
444
# File 'lib/sidekiq/api.rb', line 440

def retry_all
  while size > 0
    each(&:retry)
  end
end