class Sidekiq::JobSet
 
  - Sidekiq::JobSet
- Sidekiq::SortedSet
- Reference
- Object
Included Modules
- Enumerable(Sidekiq::SortedEntry)
Direct Known Subclasses
Defined in:
sidekiq/api.crInstance Method Summary
- #delete_by_jid(score, jid)
- #delete_by_value(name, value)
- 
        #each(&)
        
          Must yield this collection's elements to the block. 
- #fetch(score, jid = nil)
- #find_job(jid)
- #schedule(timestamp, json_message : String)
Instance methods inherited from class Sidekiq::SortedSet
  
  
    
      clear
    clear, 
    
  
    
      name : String
    name, 
    
  
    
      size
    size
    
  
    
  Constructor methods inherited from class Sidekiq::SortedSet
  
  
    
      new(name : String)
    new
    
  
    
    
  
    
    
    
    
  
    
    
    
    
  
Instance Method Detail
        
        def each(&)
        #
      
      
        
              Description copied from module Enumerable(Sidekiq::SortedEntry)
            
          
          Must yield this collection's elements to the block.
        
        def find_job(jid)
        #
      
      
        Find the job with the given JID within this sorted set.
This is a slow, inefficient operation. Do not use under normal conditions. Sidekiq Pro contains a faster version.