blob: 72133a873548fca08e2121adda6a8aad437be787 [file] [log] [blame]
package ingester
import (
"go.skia.org/infra/perf/go/file"
"go.skia.org/infra/perf/go/trybot"
)
// Ingester converts file.Files into trybot.TryFiles as they arrive.
type Ingester interface {
// Start a background Go routine that processes the incoming channel.
Start(<-chan file.File) (<-chan trybot.TryFile, error)
}