Files
origin/sysservice/tcpgateway/ILoadBalance.go
2020-11-05 17:32:30 +08:00

6 lines
189 B
Go

package tcpgateway
type ILoadBalance interface {
SelectNode(serviceName string,clientId uint64,eventType string,msgType uint16,msg []byte) int //选择一个结点,通过服务名称
}