Files
vctp2/internal/settings/context.go
2026-02-19 11:06:05 +11:00

29 lines
740 B
Go

package settings
import "context"
type reloadedContextKey struct{}
// MarkReloadedInContext marks that a given Settings instance has been refreshed in this context flow.
func MarkReloadedInContext(ctx context.Context, cfg *Settings) context.Context {
if ctx == nil {
ctx = context.Background()
}
if cfg == nil {
return ctx
}
return context.WithValue(ctx, reloadedContextKey{}, cfg)
}
// IsReloadedInContext reports whether this context flow already refreshed the provided Settings.
func IsReloadedInContext(ctx context.Context, cfg *Settings) bool {
if ctx == nil || cfg == nil {
return false
}
marked, ok := ctx.Value(reloadedContextKey{}).(*Settings)
if !ok || marked == nil {
return false
}
return marked == cfg
}