4 Star 5 Fork 4

Plato/Service-Box-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
memory.go 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
package memory
import (
"gitee.com/dennis-kk/service-box-go/util/config/source"
"time"
)
type (
memory struct {
//changeSet is the config data of source
changeSet *source.ChangeSet
}
)
func (m *memory) Read() (*source.ChangeSet, error) {
cs := &source.ChangeSet{
Data: m.changeSet.Data,
Format: m.changeSet.Format,
Source: m.changeSet.Source,
Timestamp: m.changeSet.Timestamp,
}
return cs, nil
}
func (m *memory) String() string {
return "memory"
}
//NewSource will return memory source with config
func NewSource(opts ...source.Option) source.Source {
option := source.NewOptions(opts...)
ms := &memory{}
if option.Context != nil {
ms.changeSet = option.Context.Value(memorySourceKey{}).(*source.ChangeSet)
ms.changeSet.Source = "memory"
ms.changeSet.Timestamp = time.Now()
ms.changeSet.Checksum = ms.changeSet.Sum()
}
return ms
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dennis-kk/service-box-go.git
git@gitee.com:dennis-kk/service-box-go.git
dennis-kk
service-box-go
Service-Box-go
v0.5.9

搜索帮助