Class: ActiveRecord::Associations::Preloader::AlreadyLoaded

Inherits:
Object
  • Object
show all
Defined in:
activerecord/lib/active_record/associations/preloader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, owners, reflection, preload_scope) ⇒ AlreadyLoaded

Returns a new instance of AlreadyLoaded.



157
158
159
160
# File 'activerecord/lib/active_record/associations/preloader.rb', line 157

def initialize(klass, owners, reflection, preload_scope)
  @owners = owners
  @reflection = reflection
end

Instance Attribute Details

#ownersObject (readonly)

Returns the value of attribute owners



155
156
157
# File 'activerecord/lib/active_record/associations/preloader.rb', line 155

def owners
  @owners
end

#reflectionObject (readonly)

Returns the value of attribute reflection



155
156
157
# File 'activerecord/lib/active_record/associations/preloader.rb', line 155

def reflection
  @reflection
end

Instance Method Details

#preloaded_recordsObject



164
165
166
# File 'activerecord/lib/active_record/associations/preloader.rb', line 164

def preloaded_records
  owners.flat_map { |owner| owner.association(reflection.name).target }
end

#run(preloader) ⇒ Object



162
# File 'activerecord/lib/active_record/associations/preloader.rb', line 162

def run(preloader); end