This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/serverconfigs/schedulingconfigs/candidate.go
T
2020-09-15 14:44:38 +08:00

11 lines
161 B
Go

package schedulingconfigs
// 候选对象接口
type CandidateInterface interface {
// 权重
CandidateWeight() uint
// 代号
CandidateCodes() []string
}