Class: ActiveRecord::ConnectionAdapters::ConnectionManagement::Proxy

Inherits:
Object
  • Object
show all
Defined in:
activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, testing = false) ⇒ Proxy

Returns a new instance of Proxy.



444
445
446
447
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 444

def initialize(body, testing = false)
  @body    = body
  @testing = testing
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_sym, *arguments, &block) ⇒ Object



449
450
451
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 449

def method_missing(method_sym, *arguments, &block)
  @body.send(method_sym, *arguments, &block)
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body



442
443
444
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 442

def body
  @body
end

#testingObject (readonly)

Returns the value of attribute testing



442
443
444
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 442

def testing
  @testing
end

Instance Method Details

#closeObject



461
462
463
464
465
466
467
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 461

def close
  body.close if body.respond_to?(:close)

  # Don't return connection (and perform implicit rollback) if
  # this request is a part of integration test
  ActiveRecord::Base.clear_active_connections! unless testing
end

#each(&block) ⇒ Object



457
458
459
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 457

def each(&block)
  body.each(&block)
end

#respond_to?(method_sym, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


453
454
455
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb', line 453

def respond_to?(method_sym, include_private = false)
  super || @body.respond_to?(method_sym)
end