method

begin_deferred_transaction

rails latest stable - Class: ActiveRecord::ConnectionAdapters::DatabaseStatements

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

begin_deferred_transaction(isolation_level = nil)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb, line 412
      def begin_deferred_transaction(isolation_level = nil) # :nodoc:
        if isolation_level
          begin_isolated_db_transaction(isolation_level)
        else
          begin_db_transaction
        end
      end