Sha256: 2fb484c30fbb86b70f2f23de7b37ba82b7a43c059f7abeab3748f83cbc930cd9
Contents?: true
Size: 559 Bytes
Versions: 40
Compression:
Stored size: 559 Bytes
Contents
# frozen_string_literal: true module ActiveRecord # This is a thread locals registry for Active Record. For example: # # ActiveRecord::RuntimeRegistry.sql_runtime # # returns the connection handler local to the current unit of execution (either thread of fiber). module RuntimeRegistry # :nodoc: extend self def sql_runtime ActiveSupport::IsolatedExecutionState[:active_record_sql_runtime] end def sql_runtime=(runtime) ActiveSupport::IsolatedExecutionState[:active_record_sql_runtime] = runtime end end end
Version data entries
40 entries across 38 versions & 5 rubygems