123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package gd_vehicle
- import (
- "context"
- "fmt"
- "gd_gateway/apis"
- "time"
- "github.com/smallnest/rpcx/client"
- "github.com/smallnest/rpcx/protocol"
- "github.com/smallnest/rpcx/share"
- )
- type GdVehicleXClient struct {
- xcli client.XClient
- }
- func (a *GdVehicleXClient) Init(etcdAddrs []string, basePath, servicePath string) {
- opt := client.Option{
- Retries: 3,
- RPCPath: share.DefaultRPCPath,
- ConnectTimeout: 10 * time.Second,
- SerializeType: protocol.JSON,
- CompressType: protocol.None,
- BackupLatency: 10 * time.Millisecond,
- }
- d := client.NewEtcdDiscovery(basePath, servicePath, etcdAddrs, nil)
- a.xcli = client.NewXClient(servicePath, client.Failtry, client.RandomSelect, d, opt)
- }
- func (a *GdVehicleXClient) InitForK8s(servicePath string, k8sServiceName string, k8sServicePort string) {
- opt := client.Option{
- Retries: 1,
- RPCPath: share.DefaultRPCPath,
- ConnectTimeout: 10 * time.Second,
- SerializeType: protocol.JSON,
- CompressType: protocol.None,
- BackupLatency: 10 * time.Millisecond,
- }
- sd := client.NewPeer2PeerDiscovery(fmt.Sprintf("tcp@%s:%s", k8sServiceName, k8sServicePort), "")
- a.xcli = client.NewXClient(servicePath, client.Failtry, client.RandomSelect, sd, opt)
- }
- func (a *GdVehicleXClient) Query(ctx context.Context, req *apis.CommonReq) (reply apis.CommonReply, err error) {
- err = a.xcli.Call(ctx, "Query", req, &reply)
- return
- }
|