Documentation ¶
Overview ¶
Package config is an interface for dynamic configuration.
Index ¶
- Variables
- func Load(ctx context.Context, cs ...Config) error
- func NewContext(ctx context.Context, c Config) context.Context
- type Config
- type Option
- func AfterLoad(fn ...func(context.Context, Config) error) Option
- func AfterSave(fn ...func(context.Context, Config) error) Option
- func AllowFail(b bool) Option
- func BeforeLoad(fn ...func(context.Context, Config) error) Option
- func BeforeSave(fn ...func(context.Context, Config) error) Option
- func Codec(c codec.Codec) Option
- func Context(ctx context.Context) Option
- func Logger(l logger.Logger) Option
- func Name(n string) Option
- func SetOption(k, v interface{}) Option
- func Struct(v interface{}) Option
- func StructTag(name string) Option
- func Tracer(t tracer.Tracer) Option
- type Options
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrCodecMissing is returned when codec needed and not specified ErrCodecMissing = errors.New("codec missing") // ErrInvalidStruct is returned when the target struct is invalid ErrInvalidStruct = errors.New("invalid struct specified") // ErrWatcherStopped is returned when source watcher has been stopped ErrWatcherStopped = errors.New("watcher stopped") )
Functions ¶
Types ¶
type Config ¶
type Config interface { Name() string // Init the config Init(opts ...Option) error // Options in the config Options() Options // Load config from sources Load(context.Context) error // Save config to sources Save(context.Context) error // Watch a value for changes // Watch(interface{}) (Watcher, error) String() string }
Config is an interface abstraction for dynamic configuration
func FromContext ¶ added in v3.1.0
FromContext returns store from context
type Option ¶
type Option func(o *Options)
Option function signature
func BeforeLoad ¶ added in v3.1.0
BeforeLoad run funcs before config load
func BeforeSave ¶ added in v3.1.0
BeforeSave run funcs before save
func SetOption ¶ added in v3.1.0
func SetOption(k, v interface{}) Option
SetOption returns a function to setup a context with given value
type Options ¶
type Options struct { // Struct holds the destination config struct Struct interface{} // Codec that used for load/save Codec codec.Codec // Tracer that will be used Tracer tracer.Tracer // Meter that will be used Meter meter.Meter // Logger that will be used Logger logger.Logger // Context used for external options Context context.Context // Name of the config Name string // StructTag name StructTag string // BeforeSave contains slice of funcs that runs before save BeforeSave []func(context.Context, Config) error // AfterLoad contains slice of funcs that runs after load AfterLoad []func(context.Context, Config) error // BeforeLoad contains slice of funcs that runs before load BeforeLoad []func(context.Context, Config) error // AfterSave contains slice of funcs that runs after save AfterSave []func(context.Context, Config) error // AllowFail flag to allow fail in config source AllowFail bool }
Options hold the config options
func NewOptions ¶ added in v3.1.0
NewOptions new options struct with filed values
Click to show internal directories.
Click to hide internal directories.