mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
802f855ecf
Since `ActiveJob::TestHelper` globally sets `ActiveJob::Base.queue_adapter` on setup, there is no benefit in instantiating a new `TestAdapter` per tests. The original rationale was to allow parallel tests to run without interference, but since they'd all mutate the global `ActiveJob::Base.queue_adapter`, that was never realized.
33 lines
1.1 KiB
Ruby
33 lines
1.1 KiB
Ruby
require 'active_job/queue_adapters/inline_adapter'
|
|
require 'active_support/core_ext/string/inflections'
|
|
|
|
module ActiveJob
|
|
# The <tt>ActiveJob::QueueAdapter</tt> module is used to load the
|
|
# correct adapter. The default queue adapter is the :inline queue.
|
|
module QueueAdapter #:nodoc:
|
|
extend ActiveSupport::Concern
|
|
|
|
# Includes the setter method for changing the active queue adapter.
|
|
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 Symbol, String
|
|
load_adapter(name_or_adapter)
|
|
else
|
|
name_or_adapter if name_or_adapter.respond_to?(:enqueue)
|
|
end
|
|
end
|
|
|
|
private
|
|
def load_adapter(name)
|
|
"ActiveJob::QueueAdapters::#{name.to_s.camelize}Adapter".constantize
|
|
end
|
|
end
|
|
end
|
|
end
|