Class: ActiveRecord::ConnectionAdapters::ConnectionPool::Lease
- Inherits:
-
Object
- Object
- ActiveRecord::ConnectionAdapters::ConnectionPool::Lease
- Defined in:
- lib/active_record/connection_adapters/abstract/connection_pool.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#connection ⇒ Object
Returns the value of attribute connection.
-
#sticky ⇒ Object
Returns the value of attribute sticky.
Instance Method Summary collapse
- #clear(connection) ⇒ Object
-
#initialize ⇒ Lease
constructor
A new instance of Lease.
- #release ⇒ Object
Constructor Details
#initialize ⇒ Lease
Returns a new instance of Lease.
150 151 152 153 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 150 def initialize @connection = nil @sticky = nil end |
Instance Attribute Details
#connection ⇒ Object
Returns the value of attribute connection.
148 149 150 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 148 def connection @connection end |
#sticky ⇒ Object
Returns the value of attribute sticky.
148 149 150 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 148 def sticky @sticky end |
Instance Method Details
#clear(connection) ⇒ Object
162 163 164 165 166 167 168 169 170 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 162 def clear(connection) if @connection == connection @connection = nil @sticky = nil true else false end end |
#release ⇒ Object
155 156 157 158 159 160 |
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 155 def release conn = @connection @connection = nil @sticky = nil conn end |