mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-15 00:04:46 +08:00
6 lines
189 B
Go
6 lines
189 B
Go
package tcpgateway
|
|
|
|
type ILoadBalance interface {
|
|
SelectNode(serviceName string,clientId uint64,eventType string,msgType uint16,msg []byte) int //选择一个结点,通过服务名称
|
|
}
|