Documentation ¶
Index ¶
- func NewFakeConfig(params ...interface{}) (interface{}, error)
- func NewYogoConfig(params ...interface{}) (interface{}, error)
- type FakeConfig
- func (conf *FakeConfig) Get(key string) interface{}
- func (conf *FakeConfig) GetBool(key string) bool
- func (conf *FakeConfig) GetFloat64(key string) float64
- func (conf *FakeConfig) GetInt(key string) int
- func (conf *FakeConfig) GetIntSlice(key string) []int
- func (conf *FakeConfig) GetString(key string) string
- func (conf *FakeConfig) GetStringMap(key string) map[string]interface{}
- func (conf *FakeConfig) GetStringMapString(key string) map[string]string
- func (conf *FakeConfig) GetStringMapStringSlice(key string) map[string][]string
- func (conf *FakeConfig) GetStringSlice(key string) []string
- func (conf *FakeConfig) GetTime(key string) time.Time
- func (conf *FakeConfig) IsExist(key string) bool
- func (conf *FakeConfig) Load(key string, val interface{}) error
- type FakeConfigProvider
- func (provider *FakeConfigProvider) Boot(c framework.Container) error
- func (provider *FakeConfigProvider) IsDefer() bool
- func (provider *FakeConfigProvider) Name() string
- func (provider *FakeConfigProvider) Params(c framework.Container) []interface{}
- func (provider *FakeConfigProvider) Register(c framework.Container) framework.NewInstance
- type YogoConfig
- func (conf *YogoConfig) Get(key string) interface{}
- func (conf *YogoConfig) GetBool(key string) bool
- func (conf *YogoConfig) GetFloat64(key string) float64
- func (conf *YogoConfig) GetInt(key string) int
- func (conf *YogoConfig) GetIntSlice(key string) []int
- func (conf *YogoConfig) GetString(key string) string
- func (conf *YogoConfig) GetStringMap(key string) map[string]interface{}
- func (conf *YogoConfig) GetStringMapString(key string) map[string]string
- func (conf *YogoConfig) GetStringMapStringSlice(key string) map[string][]string
- func (conf *YogoConfig) GetStringSlice(key string) []string
- func (conf *YogoConfig) GetTime(key string) time.Time
- func (conf *YogoConfig) IsExist(key string) bool
- func (conf *YogoConfig) Load(key string, val interface{}) error
- type YogoConfigProvider
- func (provider *YogoConfigProvider) Boot(c framework.Container) error
- func (provider *YogoConfigProvider) IsDefer() bool
- func (provider *YogoConfigProvider) Name() string
- func (provider *YogoConfigProvider) Params(c framework.Container) []interface{}
- func (provider *YogoConfigProvider) Register(c framework.Container) framework.NewInstance
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFakeConfig ¶
func NewFakeConfig(params ...interface{}) (interface{}, error)
func NewYogoConfig ¶
func NewYogoConfig(params ...interface{}) (interface{}, error)
NewYogoConfig 初始化Config方法
Types ¶
type FakeConfig ¶
type FakeConfig struct {
// contains filtered or unexported fields
}
func (*FakeConfig) GetFloat64 ¶
func (conf *FakeConfig) GetFloat64(key string) float64
GetFloat64 get float64
func (*FakeConfig) GetIntSlice ¶
func (conf *FakeConfig) GetIntSlice(key string) []int
GetIntSlice get int slice type
func (*FakeConfig) GetString ¶
func (conf *FakeConfig) GetString(key string) string
GetString get string typen
func (*FakeConfig) GetStringMap ¶
func (conf *FakeConfig) GetStringMap(key string) map[string]interface{}
GetStringMap get map which key is string, value is interface
func (*FakeConfig) GetStringMapString ¶
func (conf *FakeConfig) GetStringMapString(key string) map[string]string
GetStringMapString get map which key is string, value is string
func (*FakeConfig) GetStringMapStringSlice ¶
func (conf *FakeConfig) GetStringMapStringSlice(key string) map[string][]string
GetStringMapStringSlice get map which key is string, value is string slice
func (*FakeConfig) GetStringSlice ¶
func (conf *FakeConfig) GetStringSlice(key string) []string
GetStringSlice get string slice type
func (*FakeConfig) GetTime ¶
func (conf *FakeConfig) GetTime(key string) time.Time
GetTime get time type
func (*FakeConfig) IsExist ¶
func (conf *FakeConfig) IsExist(key string) bool
IsExist check setting is exist
func (*FakeConfig) Load ¶
func (conf *FakeConfig) Load(key string, val interface{}) error
Load a config to a struct, val should be an pointer
type FakeConfigProvider ¶
func (*FakeConfigProvider) Boot ¶
func (provider *FakeConfigProvider) Boot(c framework.Container) error
Boot will called when the service instantiate
func (*FakeConfigProvider) IsDefer ¶
func (provider *FakeConfigProvider) IsDefer() bool
IsDefer define whether the service instantiate when first make or register
func (*FakeConfigProvider) Name ¶
func (provider *FakeConfigProvider) Name() string
Name define the name for this service
func (*FakeConfigProvider) Params ¶
func (provider *FakeConfigProvider) Params(c framework.Container) []interface{}
Params define the necessary params for NewInstance
func (*FakeConfigProvider) Register ¶
func (provider *FakeConfigProvider) Register(c framework.Container) framework.NewInstance
Register registe a new function for make a service instance
type YogoConfig ¶
type YogoConfig struct {
// contains filtered or unexported fields
}
func (*YogoConfig) GetFloat64 ¶
func (conf *YogoConfig) GetFloat64(key string) float64
GetFloat64 get float64
func (*YogoConfig) GetIntSlice ¶
func (conf *YogoConfig) GetIntSlice(key string) []int
GetIntSlice get int slice type
func (*YogoConfig) GetString ¶
func (conf *YogoConfig) GetString(key string) string
GetString get string typen
func (*YogoConfig) GetStringMap ¶
func (conf *YogoConfig) GetStringMap(key string) map[string]interface{}
GetStringMap get map which key is string, value is interface
func (*YogoConfig) GetStringMapString ¶
func (conf *YogoConfig) GetStringMapString(key string) map[string]string
GetStringMapString get map which key is string, value is string
func (*YogoConfig) GetStringMapStringSlice ¶
func (conf *YogoConfig) GetStringMapStringSlice(key string) map[string][]string
GetStringMapStringSlice get map which key is string, value is string slice
func (*YogoConfig) GetStringSlice ¶
func (conf *YogoConfig) GetStringSlice(key string) []string
GetStringSlice get string slice type
func (*YogoConfig) GetTime ¶
func (conf *YogoConfig) GetTime(key string) time.Time
GetTime get time type
func (*YogoConfig) IsExist ¶
func (conf *YogoConfig) IsExist(key string) bool
IsExist check setting is exist
func (*YogoConfig) Load ¶
func (conf *YogoConfig) Load(key string, val interface{}) error
Load a config to a struct, val should be an pointer
type YogoConfigProvider ¶
type YogoConfigProvider struct {
// contains filtered or unexported fields
}
func (*YogoConfigProvider) Boot ¶
func (provider *YogoConfigProvider) Boot(c framework.Container) error
Boot will called when the service instantiate
func (*YogoConfigProvider) IsDefer ¶
func (provider *YogoConfigProvider) IsDefer() bool
IsDefer define whether the service instantiate when first make or register
func (*YogoConfigProvider) Name ¶
func (provider *YogoConfigProvider) Name() string
/ Name define the name for this service
func (*YogoConfigProvider) Params ¶
func (provider *YogoConfigProvider) Params(c framework.Container) []interface{}
Params define the necessary params for NewInstance
func (*YogoConfigProvider) Register ¶
func (provider *YogoConfigProvider) Register(c framework.Container) framework.NewInstance
Register registe a new function for make a service instance