config

package
v1.5.27 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 8, 2024 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IAddress

type IAddress interface {
	GetHTTP() string
	GetPPROF() string
}

type IConfig

type IConfig interface {
	GetLogging() logger.ILogging
	GetSettings() IConfigSettings

	GetAddress() IAddress
	GetProducers() []string
	GetConsumers() []string
}

func BuildConfig

func BuildConfig(pFilepath string, pCfg *SConfig) (IConfig, error)

func InitConfig

func InitConfig(cfgPath string, initCfg *SConfig) (IConfig, error)

func LoadConfig

func LoadConfig(pFilepath string) (IConfig, error)

type IConfigSettings

type IConfigSettings interface {
	GetNetworkKey() string
	GetWorkSizeBits() uint64
	GetMessagesCapacity() uint64
}

type SAddress

type SAddress struct {
	FHTTP  string `yaml:"http"`
	FPPROF string `yaml:"pprof,omitempty"`
}

func (*SAddress) GetHTTP

func (p *SAddress) GetHTTP() string

func (*SAddress) GetPPROF

func (p *SAddress) GetPPROF() string

type SConfig

type SConfig struct {
	FSettings *SConfigSettings `yaml:"settings"`

	FLogging   []string  `yaml:"logging,omitempty"`
	FAddress   *SAddress `yaml:"address"`
	FProducers []string  `yaml:"producers,omitempty"`
	FConsumers []string  `yaml:"consumers,omitempty"`
	// contains filtered or unexported fields
}

func (*SConfig) GetAddress

func (p *SConfig) GetAddress() IAddress

func (*SConfig) GetConsumers

func (p *SConfig) GetConsumers() []string

func (*SConfig) GetLogging

func (p *SConfig) GetLogging() logger.ILogging

func (*SConfig) GetProducers

func (p *SConfig) GetProducers() []string

func (*SConfig) GetSettings

func (p *SConfig) GetSettings() IConfigSettings

type SConfigSettings

type SConfigSettings struct {
	FMessagesCapacity uint64 `json:"messages_capacity" yaml:"messages_capacity"`
	FWorkSizeBits     uint64 `json:"work_size_bits,omitempty" yaml:"work_size_bits,omitempty"`
	FNetworkKey       string `json:"network_key,omitempty" yaml:"network_key,omitempty"`
}

func (*SConfigSettings) GetMessagesCapacity

func (p *SConfigSettings) GetMessagesCapacity() uint64

func (*SConfigSettings) GetNetworkKey

func (p *SConfigSettings) GetNetworkKey() string

func (*SConfigSettings) GetWorkSizeBits

func (p *SConfigSettings) GetWorkSizeBits() uint64

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL