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.
373 374 375 376 377 |
# File 'lib/sidekiq/api.rb', line 373 def initialize(parent, score, item) super(item) @score = score @parent = parent end |
Instance Attribute Details
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
371 372 373 |
# File 'lib/sidekiq/api.rb', line 371 def parent @parent end |
#score ⇒ Object (readonly)
Returns the value of attribute score.
370 371 372 |
# File 'lib/sidekiq/api.rb', line 370 def score @score end |
Instance Method Details
#add_to_queue ⇒ Object
396 397 398 399 400 401 |
# File 'lib/sidekiq/api.rb', line 396 def add_to_queue remove_job do || msg = Sidekiq.load_json() Sidekiq::Client.push(msg) end end |
#at ⇒ Object
379 380 381 |
# File 'lib/sidekiq/api.rb', line 379 def at Time.at(score).utc end |
#delete ⇒ Object
383 384 385 386 387 388 389 |
# File 'lib/sidekiq/api.rb', line 383 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
414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
# File 'lib/sidekiq/api.rb', line 414 def kill raise 'Kill not available on jobs which have not failed' unless item['failed_at'] remove_job do || Sidekiq.logger.info { "Killing job #{message['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
391 392 393 394 |
# File 'lib/sidekiq/api.rb', line 391 def reschedule(at) delete @parent.schedule(at, item) end |
#retry ⇒ Object
403 404 405 406 407 408 409 410 |
# File 'lib/sidekiq/api.rb', line 403 def retry raise "Retry not available on jobs which have not failed" unless item["failed_at"] remove_job do || msg = Sidekiq.load_json() msg['retry_count'] -= 1 Sidekiq::Client.push(msg) end end |