call(*args)
public

No documentation available.

# File activesupport/lib/active_support/callbacks.rb, line 503
      def call(*args)
        @before.each { |b| b.call(*args) }
        value = @call.call(*args)
        @after.each { |a| a.call(*args) }
        value
      end