wisski-cloud-distillery/internal/dis/component/fetcher.go
Tom Wiesing 3455f491ca
Add context
This commit adds and passes context around to (almost) every function.
This allows cancelling (almost) every function call globally.
2022-11-29 15:32:31 +01:00

20 lines
463 B
Go

package component
import (
"context"
"github.com/FAU-CDI/wisski-distillery/internal/status"
)
type DistilleryFetcher interface {
Component
// Fetch fetches information from this component and writes it into target.
// Distinct DistilleryFetchers must write into distinct fields.
Fetch(flags FetcherFlags, target *status.Distillery) error
}
// FetcherFlags describes options for a DistilleryFetcher
type FetcherFlags struct {
Context context.Context
}