mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
11 lines
211 B
Go
11 lines
211 B
Go
package schedulingconfigs
|
|
|
|
// CandidateInterface 候选对象接口
|
|
type CandidateInterface interface {
|
|
// CandidateWeight 权重
|
|
CandidateWeight() uint
|
|
|
|
// CandidateCodes 代号
|
|
CandidateCodes() []string
|
|
}
|