method

data_available?

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ThroughAssociation
data_available?() 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/associations/preloader/through_association.rb, line 67
          def data_available?
            owners.all? { |owner| loaded?(owner) } ||
              through_preloaders.all?(&:run?) && source_preloaders.all?(&:run?)
          end
Register or log in to add new notes.