Class: ActiveRecord::ConnectionAdapters::ConnectionHandler::StringConnectionName

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ StringConnectionName

Returns a new instance of StringConnectionName.



64
65
66
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_handler.rb', line 64

def initialize(name)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



62
63
64
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_handler.rb', line 62

def name
  @name
end

Instance Method Details

#current_preventing_writesObject



72
73
74
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_handler.rb', line 72

def current_preventing_writes
  false
end

#primary_class?Boolean

Returns:

  • (Boolean)


68
69
70
# File 'activerecord/lib/active_record/connection_adapters/abstract/connection_handler.rb', line 68

def primary_class?
  false
end