mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
bc6421c9ef
This adds documentation for the Active Job API. It includes documentation on how to configure the queue_adapter, and how to create new jobs. It adds links to the various other sections of the Active Job documentation.
32 lines
916 B
Ruby
32 lines
916 B
Ruby
require 'active_job/queue_adapters/inline_adapter'
|
|
require 'active_support/core_ext/string/inflections'
|
|
|
|
module ActiveJob
|
|
module QueueAdapter #:nodoc:
|
|
extend ActiveSupport::Concern
|
|
|
|
module ClassMethods
|
|
mattr_reader(:queue_adapter) { ActiveJob::QueueAdapters::InlineAdapter }
|
|
|
|
# Specify the backend queue provider. The default queue adapter
|
|
# is the :inline queue. See QueueAdapters for more
|
|
# information.
|
|
def queue_adapter=(name_or_adapter)
|
|
@@queue_adapter = \
|
|
case name_or_adapter
|
|
when :test
|
|
ActiveJob::QueueAdapters::TestAdapter.new
|
|
when Symbol, String
|
|
load_adapter(name_or_adapter)
|
|
when Class
|
|
name_or_adapter
|
|
end
|
|
end
|
|
|
|
private
|
|
def load_adapter(name)
|
|
"ActiveJob::QueueAdapters::#{name.to_s.camelize}Adapter".constantize
|
|
end
|
|
end
|
|
end
|
|
end
|