method

compute_identifier

compute_identifier(filter)
private

No documentation available.

# File activesupport/lib/active_support/callbacks.rb, line 452
      def compute_identifier(filter)
        case filter
        when String, ::Proc
          filter.object_id
        else
          filter
        end
      end