Sha256: 093d64b283a28af479636e6b18494f7e4f99d76828ed1cc303a2b469e6928d99
Contents?: true
Size: 1.01 KB
Versions: 35
Compression:
Stored size: 1.01 KB
Contents
module ActiveJob module QueuePriority extend ActiveSupport::Concern # Includes the ability to override the default queue priority. module ClassMethods mattr_accessor(:default_priority) # Specifies the priority of the queue to create the job with. # # class PublishToFeedJob < ActiveJob::Base # queue_with_priority 50 # # def perform(post) # post.to_feed! # end # end # # Specify either an argument or a block. def queue_with_priority(priority=nil, &block) if block_given? self.priority = block else self.priority = priority end end end included do class_attribute :priority, instance_accessor: false self.priority = default_priority end # Returns the priority that the job will be created with def priority if @priority.is_a?(Proc) @priority = instance_exec(&@priority) end @priority end end end
Version data entries
35 entries across 35 versions & 4 rubygems