Class: Sidekiq::ScheduledSet
- Defined in:
- lib/sidekiq/api.rb
Overview
The set of scheduled jobs within Sidekiq. Based on this, you can search/filter for jobs. Here’s an example where I’m selecting jobs based on some complex logic and deleting them from the scheduled set.
See the API wiki page for usage notes and examples.
Instance Attribute Summary
Attributes inherited from SortedSet
Instance Method Summary collapse
-
#initialize ⇒ ScheduledSet
constructor
A new instance of ScheduledSet.
Methods inherited from JobSet
#each, #fetch, #find_job, #schedule
Methods inherited from SortedSet
Constructor Details
#initialize ⇒ ScheduledSet
Returns a new instance of ScheduledSet.
776 777 778 |
# File 'lib/sidekiq/api.rb', line 776 def initialize super "schedule" end |