Class: SidekiqUniqueJobs::OnConflict::Reject
- Includes:
- Timing
- Defined in:
- lib/sidekiq_unique_jobs/on_conflict/reject.rb
Overview
Strategy to send jobs to dead queue
Instance Attribute Summary
Attributes inherited from Strategy
Instance Method Summary collapse
-
#call ⇒ Object
Send jobs to dead queue.
-
#deadset ⇒ Sidekiq::Deadset
private
An instance of Sidekiq::Deadset.
-
#kill_job_with_options ⇒ void
private
Executes the kill instructions with arguments.
-
#kill_job_without_options ⇒ void
private
Executes the kill instructions without arguments.
-
#kill_with_options? ⇒ true, false
private
Sidekiq version compatibility check.
-
#payload ⇒ String
The Sidekiq job hash as JSON.
Methods included from Timing
clock_stamp, now_f, time_source, timed
Methods inherited from Strategy
Methods included from Script::Caller
call_script, debug_lua, do_call, extract_args, max_history, normalize_argv, now_f, redis_version
Methods included from Logging
#build_message, included, #log_debug, #log_error, #log_fatal, #log_info, #log_warn, #logger, #logging_context, #with_configured_loggers_context, #with_logging_context
Methods included from JSON
dump_json, load_json, safe_load_json
Constructor Details
This class inherits a constructor from SidekiqUniqueJobs::OnConflict::Strategy
Instance Method Details
#call ⇒ Object
Send jobs to dead queue
12 13 14 15 16 17 18 19 20 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 12 def call log_info { "Adding dead #{item[CLASS]} job #{item[JID]}" } if else end end |
#deadset ⇒ Sidekiq::Deadset
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
An instance of Sidekiq::Deadset
60 61 62 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 60 def deadset @deadset ||= Sidekiq::DeadSet.new end |
#kill_job_with_options ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
Executes the kill instructions with arguments
50 51 52 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 50 def deadset.kill(payload, notify_failure: false) end |
#kill_job_without_options ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
Executes the kill instructions without arguments
40 41 42 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 40 def deadset.kill(payload) end |
#kill_with_options? ⇒ true, false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Sidekiq version compatibility check
30 31 32 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 30 def Sidekiq::DeadSet.instance_method(:kill).arity > 1 end |
#payload ⇒ String
The Sidekiq job hash as JSON
70 71 72 |
# File 'lib/sidekiq_unique_jobs/on_conflict/reject.rb', line 70 def payload @payload ||= dump_json(item) end |