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
-
#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, #jid, #klass, #latency, #queue
Constructor Details
#initialize(parent, score, item) ⇒ SortedEntry
Returns a new instance of SortedEntry.
388 389 390 391 392 |
# File 'lib/sidekiq/api.rb', line 388 def initialize(parent, score, item) super(item) @score = score @parent = parent end |
Instance Attribute Details
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
386 387 388 |
# File 'lib/sidekiq/api.rb', line 386 def parent @parent end |
#score ⇒ Object (readonly)
Returns the value of attribute score.
385 386 387 |
# File 'lib/sidekiq/api.rb', line 385 def score @score end |
Instance Method Details
#add_to_queue ⇒ Object
411 412 413 414 415 416 |
# File 'lib/sidekiq/api.rb', line 411 def add_to_queue remove_job do || msg = Sidekiq.load_json() Sidekiq::Client.push(msg) end end |
#at ⇒ Object
394 395 396 |
# File 'lib/sidekiq/api.rb', line 394 def at Time.at(score).utc end |
#delete ⇒ Object
398 399 400 401 402 403 404 |
# File 'lib/sidekiq/api.rb', line 398 def delete if @value @parent.delete_by_value(@parent.name, @value) else @parent.delete_by_jid(score, jid) end end |
#kill ⇒ Object
Place job in the dead set
429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
# File 'lib/sidekiq/api.rb', line 429 def kill raise 'Kill not available on jobs which have not failed' unless item['failed_at'] remove_job do || Sidekiq.logger.info { "Killing job #{['jid']}" } now = Time.now.to_f Sidekiq.redis do |conn| conn.multi do conn.zadd('dead', now, ) conn.zremrangebyscore('dead', '-inf', now - DeadSet.timeout) conn.zremrangebyrank('dead', 0, - DeadSet.max_jobs) end end end end |
#reschedule(at) ⇒ Object
406 407 408 409 |
# File 'lib/sidekiq/api.rb', line 406 def reschedule(at) delete @parent.schedule(at, item) end |