Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IConfig ¶
type IConfig interface { GetLogging() logger.ILogging GetSettings() IConfigSettings GetAddress() string GetConnection() IConnection }
func LoadConfig ¶
type IConfigSettings ¶
type IConfigSettings interface { net_message.ISettings }
type IConnection ¶
type IConnection interface {
GetSrvHost() string
}
type SConfig ¶
type SConfig struct { FSettings *SConfigSettings `yaml:"settings"` FLogging []string `yaml:"logging,omitempty"` FAddress string `yaml:"address"` FConnection *SConnection `yaml:"connection"` // contains filtered or unexported fields }
func (*SConfig) GetAddress ¶
func (*SConfig) GetConnection ¶
func (p *SConfig) GetConnection() IConnection
func (*SConfig) GetLogging ¶
func (*SConfig) GetSettings ¶
func (p *SConfig) GetSettings() IConfigSettings
type SConfigSettings ¶
type SConfigSettings struct { FWorkSizeBits uint64 `json:"work_size_bits,omitempty" yaml:"work_size_bits,omitempty"` FNetworkKey string `json:"network_key,omitempty" yaml:"network_key,omitempty"` }
func (*SConfigSettings) GetNetworkKey ¶
func (p *SConfigSettings) GetNetworkKey() string
func (*SConfigSettings) GetWorkSizeBits ¶
func (p *SConfigSettings) GetWorkSizeBits() uint64
type SConnection ¶
type SConnection struct {
FSrvHost string `yaml:"srv_host"`
}
func (*SConnection) GetSrvHost ¶
func (p *SConnection) GetSrvHost() string
Click to show internal directories.
Click to hide internal directories.