method

instrument_enqueue_all

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActiveJob
instrument_enqueue_all(queue_adapter, 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/instrumentation.rb, line 6
      def instrument_enqueue_all(queue_adapter, jobs)
        payload = { adapter: queue_adapter, jobs: jobs }
        ActiveSupport::Notifications.instrument("enqueue_all.active_job", payload) do
          result = yield payload
          payload[:enqueued_count] = result
          result
        end
      end
Register or log in to add new notes.