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.
361 362 363 364 365 |
# File 'lib/sidekiq/api.rb', line 361 def initialize(parent, score, item) super(item) @score = score @parent = parent end |
Instance Attribute Details
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
359 360 361 |
# File 'lib/sidekiq/api.rb', line 359 def parent @parent end |
#score ⇒ Object (readonly)
Returns the value of attribute score.
358 359 360 |
# File 'lib/sidekiq/api.rb', line 358 def score @score end |
Instance Method Details
#add_to_queue ⇒ Object
384 385 386 387 388 389 |
# File 'lib/sidekiq/api.rb', line 384 def add_to_queue remove_job do || msg = Sidekiq.load_json() Sidekiq::Client.push(msg) end end |
#at ⇒ Object
367 368 369 |
# File 'lib/sidekiq/api.rb', line 367 def at Time.at(score).utc end |
#delete ⇒ Object
371 372 373 374 375 376 377 |
# File 'lib/sidekiq/api.rb', line 371 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
402 403 404 405 406 407 408 409 410 411 412 413 414 415 |
# File 'lib/sidekiq/api.rb', line 402 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
379 380 381 382 |
# File 'lib/sidekiq/api.rb', line 379 def reschedule(at) delete @parent.schedule(at, item) end |