See ActiveRecord::Transactions::ClassMethods for documentation.
Namespace
Methods
- A
- R
- T
- W
Instance Public methods
add_to_transaction()
Link
Add the record to the current transaction so that the :after_rollback and :after_commit callbacks can be called.
rollback_active_record_state!()
Link
Reset id and @new_record if the transaction rolls back.
# File activerecord/lib/active_record/transactions.rb, line 268 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
transaction(options = {}, &block)
Link
See ActiveRecord::Transactions::ClassMethods for detailed documentation.
with_transaction_returning_status()
Link
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.