代码拉取完成,页面将自动刷新
package process_admin
import (
"encoding/json"
"gitee.com/meng_mengs_boys/eosc"
"gitee.com/meng_mengs_boys/eosc/log"
)
type WorkerDatas struct {
data eosc.Untyped[string, *WorkerInfo]
}
func (w *WorkerDatas) Get(id string) (eosc.IWorker, bool) {
info, has := w.GetInfo(id)
if has {
return info.worker, true
}
return nil, false
}
func NewWorkerDatas(initData map[string][]byte) *WorkerDatas {
data := &WorkerDatas{data: eosc.BuildUntyped[string, *WorkerInfo]()}
for id, d := range initData {
cf := new(eosc.WorkerConfig)
e := json.Unmarshal(d, cf)
if e != nil {
continue
}
data.Set(id, &WorkerInfo{
worker: nil,
config: cf,
attr: nil,
info: nil,
})
}
return data
}
func (w *WorkerDatas) Set(id string, v *WorkerInfo) {
log.DebugF("worker set:%s==>%v", id, v.config)
w.data.Set(id, v)
}
func (w *WorkerDatas) GetInfo(id string) (*WorkerInfo, bool) {
return w.data.Get(id)
}
func (w *WorkerDatas) Del(id string) (*WorkerInfo, bool) {
return w.data.Del(id)
}
func (w *WorkerDatas) List() []*WorkerInfo {
return w.data.List()
}
func (w *WorkerDatas) Keys() []string {
return w.data.Keys()
}
func (w *WorkerDatas) All() map[string]*WorkerInfo {
ds := w.data.All()
return ds
}
func (w *WorkerDatas) Clone() *WorkerDatas {
return &WorkerDatas{data: w.data.Clone()}
}
func (w *WorkerDatas) Count() int {
return w.data.Count()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。