See ActiveRecord::Transactions::ClassMethods for documentation.
Namespace
Methods
- A
- R
- T
- W
Instance Public methods
Add the record to the current transaction so that the :after_rollback and :after_commit callbacks can be called.
Reset id and @new_record if the transaction rolls back.
# File activerecord/lib/active_record/transactions.rb, line 250 def rollback_active_record_state! remember_transaction_record_state yield rescue Exception IdentityMap.remove(self) if IdentityMap.enabled? restore_transaction_record_state raise ensure clear_transaction_record_state end
See ActiveRecord::Transactions::ClassMethods for detailed documentation.
Executes method
within a transaction and captures its return
value as a status flag. If the status is true the transaction is committed,
otherwise a ROLLBACK is issued. In any case the status flag is returned.
This method is available within the context of an ActiveRecord::Base instance.