Method: Webhookdb::Replicator::Base#_backfillers

Defined in:
lib/webhookdb/replicator/base.rb

#_backfillersArray<Webhookdb::Backfiller>

Return backfillers for the replicator. We must use an array for ‘data-based’ backfillers, like when we need to paginate for each row in another table.

By default, return a ServiceBackfiller, which will call _fetch_backfill_page on the receiver.

Returns:



1063
1064
1065
# File 'lib/webhookdb/replicator/base.rb', line 1063

def _backfillers
  return [ServiceBackfiller.new(self)]
end