Module: SampleDataDump::Interfaces::DataStoreGateway

Extended by:
Duckface::ActsAsInterface
Defined in:
lib/sample_data_dump/interfaces/data_store_gateway.rb

Instance Method Summary collapse

Instance Method Details

#dump_to_local_file(_table_configuration) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/sample_data_dump/interfaces/data_store_gateway.rb', line 10

def dump_to_local_file(_table_configuration)
  raise NotImplementedError
end

#load_dump_file(_table_configuration) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/sample_data_dump/interfaces/data_store_gateway.rb', line 14

def load_dump_file(_table_configuration)
  raise NotImplementedError
end

#reset_sequence(_table_configuration) ⇒ Object

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/sample_data_dump/interfaces/data_store_gateway.rb', line 18

def reset_sequence(_table_configuration)
  raise NotImplementedError
end

#valid?(_table_configuration) ⇒ Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/sample_data_dump/interfaces/data_store_gateway.rb', line 22

def valid?(_table_configuration)
  raise NotImplementedError
end

#wipe_table(_table_configuration) ⇒ Object

Raises:

  • (NotImplementedError)


26
27
28
# File 'lib/sample_data_dump/interfaces/data_store_gateway.rb', line 26

def wipe_table(_table_configuration)
  raise NotImplementedError
end