method

instrument

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: JobRuntime
instrument(operation, payload = {}, &block) private

No documentation

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

Hide source
# File activerecord/lib/active_record/railties/job_runtime.rb, line 9
        def instrument(operation, payload = {}, &block)
          if operation == :perform && block
            super(operation, payload) do
              db_runtime_before_perform = ActiveRecord::RuntimeRegistry.sql_runtime
              result = block.call
              payload[:db_runtime] = ActiveRecord::RuntimeRegistry.sql_runtime - db_runtime_before_perform
              result
            end
          else
            super
          end
        end
Register or log in to add new notes.