Module: ActiveJob::QueuePriority

Extended by:
ActiveSupport::Concern
Included in:
Base
Defined in:
lib/active_job/queue_priority.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#priorityObject

Returns the priority that the job will be created with



53
54
55
56
57
58
# File 'lib/active_job/queue_priority.rb', line 53

def priority
  if @priority.is_a?(Proc)
    @priority = instance_exec(&@priority)
  end
  @priority
end