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

11 lines
211 B
Go
Raw Normal View History

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