module InstDataShipper module Destinations class Speccable < Base include Concerns::Chunking def chunk_data(generator, table:, extra: nil) super(generator) do |batch, idx| yield batch end end def upload_data_chunk(table_def, chunk); end def parse_configuration(uri); end end end end