Files
rpcx/client/smooth_weighted_round_robin.go
yanshushuang f0e86a540e clean code
2024-01-11 11:08:16 +08:00

10 lines
173 B
Go

package client
// Weighted is a wrapped server with weight
type Weighted struct {
Server string
Weight int
CurrentWeight int
EffectiveWeight int
}