Flowdock
method

queue_adapter_changed_jobs

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: TestHelper
queue_adapter_changed_jobs() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/test_helper.rb, line 694
      def queue_adapter_changed_jobs
        (ActiveJob::Base.descendants << ActiveJob::Base).select do |klass|
          # only override explicitly set adapters, a quirk of `class_attribute`
          klass.singleton_class.public_instance_methods(false).include?(:_queue_adapter)
        end
      end
Register or log in to add new notes.