Class: ActiveRecord::ConnectionAdapters::NullPool
- Inherits:
-
Object
- Object
- ActiveRecord::ConnectionAdapters::NullPool
- Includes:
- AbstractPool
- Defined in:
- 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 Method Summary collapse
- #async_executor ⇒ Object
- #checkin(_) ⇒ Object
- #connection_class ⇒ Object
- #db_config ⇒ Object
- #remove(_) ⇒ Object
- #schema_reflection ⇒ Object
Instance Method Details
#async_executor ⇒ Object
32 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 32 def async_executor; end |
#checkin(_) ⇒ Object
30 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 30 def checkin(_); end |
#connection_class ⇒ Object
29 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 29 def connection_class; end |
#db_config ⇒ Object
33 34 35 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 33 def db_config NULL_CONFIG end |
#remove(_) ⇒ Object
31 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 31 def remove(_); end |
#schema_reflection ⇒ Object
25 26 27 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 25 def schema_reflection SchemaReflection.new(nil) end |