Callbacks

nodoc:

Constants

Methods

#destroy
nodoc:
def destroy #:nodoc:
  tx = Neo4j::Transaction.new
  run_callbacks(:destroy) { super }
rescue
  @_deleted = false
  @attributes = @attributes.dup
  tx.mark_failed
  raise
ensure
  tx.close if tx
end

#initialize

def initialize(args = nil)
  run_callbacks(:initialize) { super }
end
#touch
nodoc:
def touch #:nodoc:
  run_callbacks(:touch) { super }
end