Flowdock
method

default_terminator

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: CallbackChain
default_terminator() private

No documentation

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

Hide source
# File activesupport/lib/active_support/callbacks.rb, line 602
          def default_terminator
            Proc.new do |target, result_lambda|
              terminate = true
              catch(:abort) do
                result_lambda.call
                terminate = false
              end
              terminate
            end
          end
Register or log in to add new notes.