Files
EdgeCommon/pkg/serverconfigs/schedulingconfigs/candidate.go

11 lines
161 B
Go
Raw Normal View History

2020-09-15 14:44:38 +08:00
package schedulingconfigs
2020-09-13 19:27:47 +08:00
// 候选对象接口
type CandidateInterface interface {
// 权重
CandidateWeight() uint
// 代号
CandidateCodes() []string
}