Module: ActiveJob::QueueName
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#queue_name ⇒ Object
Returns the name of the queue the job will be run on.
Instance Method Details
#queue_name ⇒ Object
Returns the name of the queue the job will be run on.
61 62 63 64 65 66 |
# File 'lib/active_job/queue_name.rb', line 61 def queue_name if @queue_name.is_a?(Proc) @queue_name = self.class.queue_name_from_part(instance_exec(&@queue_name)) end @queue_name end |