Method: Cranium::ExternalTable#initialize
- Defined in:
- lib/cranium/external_table.rb
#initialize(source, db_connection, error_threshold: nil) ⇒ ExternalTable
Returns a new instance of ExternalTable.
3 4 5 6 7 |
# File 'lib/cranium/external_table.rb', line 3 def initialize(source, db_connection, error_threshold: nil) @source = source @connection = db_connection @error_threshold = error_threshold end |