Method: Webhookdb::Replicator::Base#_backfillers
- Defined in:
- lib/webhookdb/replicator/base.rb
#_backfillers ⇒ Array<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.
1063 1064 1065 |
# File 'lib/webhookdb/replicator/base.rb', line 1063 def _backfillers return [ServiceBackfiller.new(self)] end |