Class: ActiveRecord::RuntimeRegistry
- Inherits:
-
Object
- Object
- ActiveRecord::RuntimeRegistry
- Extended by:
- ActiveSupport::PerThreadRegistry
- Defined in:
- lib/active_record/runtime_registry.rb
Overview
This is a thread locals registry for Active Record. For example:
ActiveRecord::RuntimeRegistry.connection_handler
returns the connection handler local to the current thread.
See the documentation of ActiveSupport::PerThreadRegistry for further details.
Instance Attribute Summary collapse
-
#connection_handler ⇒ Object
Returns the value of attribute connection_handler.
-
#sql_runtime ⇒ Object
Returns the value of attribute sql_runtime.
Instance Attribute Details
#connection_handler ⇒ Object
Returns the value of attribute connection_handler.
17 18 19 |
# File 'lib/active_record/runtime_registry.rb', line 17 def connection_handler @connection_handler end |
#sql_runtime ⇒ Object
Returns the value of attribute sql_runtime.
17 18 19 |
# File 'lib/active_record/runtime_registry.rb', line 17 def sql_runtime @sql_runtime end |