Sha256: 5fb222ab426eb6067d62d989344f0a835f5e85457b2ec76c7cb3f10e2dde17f3

Contents?: true

Size: 764 Bytes

Versions: 95

Compression:

Stored size: 764 Bytes

Contents

require 'active_support/per_thread_registry'

module ActiveRecord
  # 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 <tt>ActiveSupport::PerThreadRegistry</tt>
  # for further details.
  class RuntimeRegistry # :nodoc:
    extend ActiveSupport::PerThreadRegistry

    attr_accessor :connection_handler, :sql_runtime, :connection_id

    [:connection_handler, :sql_runtime, :connection_id].each do |val|
      class_eval %{ def self.#{val}; instance.#{val}; end }, __FILE__, __LINE__
      class_eval %{ def self.#{val}=(x); instance.#{val}=x; end }, __FILE__, __LINE__
    end
  end
end

Version data entries

95 entries across 91 versions & 8 rubygems

Version Path
activerecord-4.2.11.3 lib/active_record/runtime_registry.rb
activerecord-4.2.11.2 lib/active_record/runtime_registry.rb
activerecord-4.2.11.1 lib/active_record/runtime_registry.rb
activerecord-4.2.11 lib/active_record/runtime_registry.rb
activerecord-4.2.10 lib/active_record/runtime_registry.rb
activerecord-4.2.10.rc1 lib/active_record/runtime_registry.rb
activerecord-4.2.9 lib/active_record/runtime_registry.rb
activerecord-4.2.9.rc2 lib/active_record/runtime_registry.rb
activerecord-4.2.9.rc1 lib/active_record/runtime_registry.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activerecord-4.2.8/lib/active_record/runtime_registry.rb
activerecord-4.2.8 lib/active_record/runtime_registry.rb
activerecord-4.2.8.rc1 lib/active_record/runtime_registry.rb
activerecord-4.2.7.1 lib/active_record/runtime_registry.rb
activerecord-4.2.7 lib/active_record/runtime_registry.rb
activerecord-4.1.16 lib/active_record/runtime_registry.rb
activerecord-4.1.16.rc1 lib/active_record/runtime_registry.rb
activerecord-4.2.7.rc1 lib/active_record/runtime_registry.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-4.2.6/lib/active_record/runtime_registry.rb
activerecord-4.1.15 lib/active_record/runtime_registry.rb
activerecord-4.2.6 lib/active_record/runtime_registry.rb