Method: Datamappify::Lazy::SourceAttributesWalker#walk_performed

Defined in:
lib/datamappify/lazy/source_attributes_walker.rb

#walk_performed(attributes) ⇒ void (private)

This method returns an undefined value.



22
23
24
25
26
27
28
29
30
31
# File 'lib/datamappify/lazy/source_attributes_walker.rb', line 22

def walk_performed(attributes)
  attributes.each do |attribute|
    @entity.cached_attributes[attribute.key] = attribute.value
  end

  @entity.changed
  @entity.notify_observers(@query_method, attributes)

  super
end