Class: Sidekiq::SortedEntry
Instance Attribute Summary collapse
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#score ⇒ Object
readonly
Returns the value of attribute score.
Attributes inherited from Job
Instance Method Summary collapse
- #add_to_queue ⇒ Object
- #at ⇒ Object
- #delete ⇒ Object
- #error? ⇒ Boolean
-
#initialize(parent, score, item) ⇒ SortedEntry
constructor
A new instance of SortedEntry.
-
#kill ⇒ Object
Place job in the dead set.
- #reschedule(at) ⇒ Object
- #retry ⇒ Object
Methods inherited from Job
#[], #args, #created_at, #display_args, #display_class, #enqueued_at, #error_backtrace, #jid, #klass, #latency, #parse, #tags
Constructor Details
#initialize(parent, score, item) ⇒ SortedEntry
Returns a new instance of SortedEntry.
450 451 452 453 454 |
# File 'lib/sidekiq/api.rb', line 450 def initialize(parent, score, item) super(item) @score = score @parent = parent end |
Instance Attribute Details
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
448 449 450 |
# File 'lib/sidekiq/api.rb', line 448 def parent @parent end |
#score ⇒ Object (readonly)
Returns the value of attribute score.
447 448 449 |
# File 'lib/sidekiq/api.rb', line 447 def score @score end |
Instance Method Details
#add_to_queue ⇒ Object
474 475 476 477 478 479 |
# File 'lib/sidekiq/api.rb', line 474 def add_to_queue remove_job do || msg = Sidekiq.load_json() Sidekiq::Client.push(msg) end end |
#at ⇒ Object
456 457 458 |
# File 'lib/sidekiq/api.rb', line 456 def at Time.at(score).utc end |
#delete ⇒ Object
460 461 462 463 464 465 466 |
# File 'lib/sidekiq/api.rb', line 460 def delete if @value @parent.delete_by_value(@parent.name, @value) else @parent.delete_by_jid(score, jid) end end |
#error? ⇒ Boolean
497 498 499 |
# File 'lib/sidekiq/api.rb', line 497 def error? !!item["error_class"] end |
#kill ⇒ Object
Place job in the dead set
491 492 493 494 495 |
# File 'lib/sidekiq/api.rb', line 491 def kill remove_job do || DeadSet.new.kill() end end |