Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Manifold ¶
func Manifold(config ManifoldConfig) dependency.Manifold
Manifold returns a Manifold that encapsulates the statushistorypruner worker.
Types ¶
type Facade ¶
type Facade interface { Prune(time.Duration, int) error WatchForModelConfigChanges() (watcher.NotifyWatcher, error) ModelConfig() (*config.Config, error) }
Facade represents an API that implements status history pruning.
type ManifoldConfig ¶
type ManifoldConfig struct { APICallerName string EnvironName string ClockName string PruneInterval time.Duration NewWorker func(Config) (worker.Worker, error) NewFacade func(base.APICaller) Facade }
ManifoldConfig describes the resources and configuration on which the statushistorypruner worker depends.
func (ManifoldConfig) Validate ¶
func (config ManifoldConfig) Validate() error
Validate is called by start to check for bad configuration.
type PrunerWorker ¶
type PrunerWorker struct {
// contains filtered or unexported fields
}
Worker prunes status history records at regular intervals.
func (*PrunerWorker) Catacomb ¶
func (w *PrunerWorker) Catacomb() *catacomb.Catacomb
returns the prune worker's catacomb
func (*PrunerWorker) Config ¶
func (w *PrunerWorker) Config() *Config
return the prune worker's config
Click to show internal directories.
Click to hide internal directories.