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