Flowdock
method

build

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Before
build(callback_sequence, user_callback, user_conditions, chain_config, filter, name) public

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 162
          def self.build(callback_sequence, user_callback, user_conditions, chain_config, filter, name)
            halted_lambda = chain_config[:terminator]

            if user_conditions.any?
              halting_and_conditional(callback_sequence, user_callback, user_conditions, halted_lambda, filter, name)
            else
              halting(callback_sequence, user_callback, halted_lambda, filter, name)
            end
          end
Register or log in to add new notes.