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

11 lines
211 B
Go

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