Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PipelineHandlerFactory ¶
type PipelineHandlerFactory struct {
// contains filtered or unexported fields
}
func NewHandlerFactory ¶
func NewHandlerFactory(pipelineDBFactory db.PipelineDBFactory) *PipelineHandlerFactory
func (*PipelineHandlerFactory) HandlerFor ¶
func (pdbh *PipelineHandlerFactory) HandlerFor(handlerFunc func(db.PipelineDB) http.Handler) http.HandlerFunc
type PipelineRunnerFactory ¶
type PipelineRunnerFactory func(db.PipelineDB) ifrit.Runner
type PipelineSyncer ¶
type PipelineSyncer interface {
Sync()
}
type PipelinesDB ¶
type PipelinesDB interface {
GetAllActivePipelines() ([]db.SavedPipeline, error)
}
type RadarSchedulerFactory ¶
type RadarSchedulerFactory interface { BuildRadar(pipelineDB db.PipelineDB) *radar.Radar BuildScheduler(pipelineDB db.PipelineDB) *scheduler.Scheduler }
type SyncRunner ¶
type SyncRunner struct { Syncer PipelineSyncer Interval time.Duration Clock clock.Clock }
type Syncer ¶
type Syncer struct {
// contains filtered or unexported fields
}
func NewSyncer ¶
func NewSyncer( logger lager.Logger, pipelinesDB PipelinesDB, pipelineDBFactory db.PipelineDBFactory, pipelineRunnerFactory PipelineRunnerFactory, ) *Syncer
Click to show internal directories.
Click to hide internal directories.