Class: ActiveRecord::ConnectionAdapters::NullPool
- Includes:
- AbstractPool
- Defined in:
- activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
Overview
:nodoc:
Defined Under Namespace
Classes: NullConfig
Constant Summary collapse
- NULL_CONFIG =
:nodoc:
NullConfig.new
Instance Attribute Summary collapse
-
#schema_cache ⇒ Object
Returns the value of attribute schema_cache.
Instance Method Summary collapse
- #async_executor ⇒ Object
- #checkin(_) ⇒ Object
- #connection_class ⇒ Object
- #db_config ⇒ Object
- #remove(_) ⇒ Object
Methods included from AbstractPool
#get_schema_cache, #lazily_set_schema_cache, #set_schema_cache
Instance Attribute Details
#schema_cache ⇒ Object
Returns the value of attribute schema_cache
41 42 43 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 41 def schema_cache @schema_cache end |
Instance Method Details
#async_executor ⇒ Object
46 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 46 def async_executor; end |
#checkin(_) ⇒ Object
44 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 44 def checkin(_); end |
#connection_class ⇒ Object
43 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 43 def connection_class; end |
#db_config ⇒ Object
47 48 49 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 47 def db_config NULL_CONFIG end |
#remove(_) ⇒ Object
45 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 45 def remove(_); end |