mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
15 lines
230 B
Go
15 lines
230 B
Go
package backfill
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/sourcegraph/sourcegraph/internal/goroutine"
|
|
)
|
|
|
|
type UploadService interface {
|
|
NewCommittedAtBackfiller(
|
|
interval time.Duration,
|
|
batchSize int,
|
|
) goroutine.BackgroundRoutine
|
|
}
|