mirror of
https://github.com/smallnest/rpcx.git
synced 2025-09-27 04:26:26 +08:00
10 lines
173 B
Go
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
|
|
}
|