Sha256: 394078128d42d058410e92db32028b0d070d3131f4bb8f26010674e105ef763c
Contents?: true
Size: 668 Bytes
Versions: 124
Compression:
Stored size: 668 Bytes
Contents
module Neo4j::ActiveNode::Initialize extend ActiveSupport::Concern include Neo4j::Shared::Initialize attr_reader :called_by # called when loading the node from the database # @param [Neo4j::Node] persisted_node the node this class wraps # @param [Hash] properties of the persisted node. def init_on_load(persisted_node, properties) self.class.extract_association_attributes!(properties) @_persisted_obj = persisted_node changed_attributes && changed_attributes.clear @attributes = convert_and_assign_attributes(properties) end def init_on_reload(reloaded) @attributes = nil init_on_load(reloaded, reloaded.props) end end
Version data entries
124 entries across 124 versions & 2 rubygems