config

package
v1.5.18 Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2023 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 added in v1.5.13

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

type IConfig

type IConfig interface {
	GetSettings() IConfigSettings
	GetLogging() logger.ILogging
	GetAddress() IAddress
	GetNetworkKey() string
	GetConnections() []string
	GetConsumers() []string
}

func BuildConfig added in v1.5.6

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

func InitConfig added in v1.5.8

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

func LoadConfig

func LoadConfig(pFilepath string) (IConfig, error)

type IConfigSettings added in v1.5.18

type IConfigSettings interface {
	message.ISettings

	GetQueuePeriodMS() uint64
	GetMessagesCapacity() uint64
	GetLimitVoidSizeBytes() uint64
}

type SAddress added in v1.5.13

type SAddress struct {
	FTCP  string `json:"tcp,omitempty"`
	FHTTP string `json:"http,omitempty"`
}

func (*SAddress) GetHTTP added in v1.5.13

func (p *SAddress) GetHTTP() string

func (*SAddress) GetTCP added in v1.5.13

func (p *SAddress) GetTCP() string

type SConfig

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

	FLogging     []string  `json:"logging,omitempty"`
	FAddress     *SAddress `json:"address,omitempty"`
	FNetworkKey  string    `json:"network_key,omitempty"`
	FConnections []string  `json:"connections,omitempty"`
	FConsumers   []string  `json:"consumers,omitempty"`
	// contains filtered or unexported fields
}

func (*SConfig) GetAddress added in v1.5.6

func (p *SConfig) GetAddress() IAddress

func (*SConfig) GetConnections added in v1.5.13

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

func (*SConfig) GetConsumers added in v1.5.6

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

func (*SConfig) GetLogging added in v1.5.6

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

func (*SConfig) GetNetworkKey added in v1.5.16

func (p *SConfig) GetNetworkKey() string

func (*SConfig) GetSettings added in v1.5.18

func (p *SConfig) GetSettings() IConfigSettings

type SConfigSettings added in v1.5.18

type SConfigSettings struct {
	FMessageSizeBytes   uint64 `json:"message_size_bytes"`
	FWorkSizeBits       uint64 `json:"work_size_bits"`
	FQueuePeriodMS      uint64 `json:"queue_period_ms,omitempty"`
	FMessagesCapacity   uint64 `json:"messages_capacity,omitempty"`
	FLimitVoidSizeBytes uint64 `json:"limit_void_size_bytes,omitempty"`
}

func (*SConfigSettings) GetLimitVoidSizeBytes added in v1.5.18

func (p *SConfigSettings) GetLimitVoidSizeBytes() uint64

func (*SConfigSettings) GetMessageSizeBytes added in v1.5.18

func (p *SConfigSettings) GetMessageSizeBytes() uint64

func (*SConfigSettings) GetMessagesCapacity added in v1.5.18

func (p *SConfigSettings) GetMessagesCapacity() uint64

func (*SConfigSettings) GetQueuePeriodMS added in v1.5.18

func (p *SConfigSettings) GetQueuePeriodMS() uint64

func (*SConfigSettings) GetWorkSizeBits added in v1.5.18

func (p *SConfigSettings) GetWorkSizeBits() uint64

Jump to

Keyboard shortcuts

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