mirror of
https://gitee.com/johng/gf
synced 2026-07-05 05:13:14 +08:00
56 lines
1.4 KiB
Go
56 lines
1.4 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials/insecure"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/net/gsvc"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
"github.com/gogf/gf/v2/os/gfile"
|
|
|
|
"github.com/gogf/gf/contrib/registry/file/v2"
|
|
"github.com/gogf/gf/contrib/rpc/grpcx/v2"
|
|
|
|
pb "github.com/gogf/gf/example/rpc/grpcx/rawgrpc/helloworld"
|
|
)
|
|
|
|
func main() {
|
|
grpcx.Resolver.Register(file.New(gfile.Temp("gsvc")))
|
|
|
|
var (
|
|
ctx = gctx.GetInitCtx()
|
|
service = gsvc.NewServiceWithName(`hello`)
|
|
)
|
|
// Set up a connection to the server.
|
|
conn, err := grpc.Dial(
|
|
fmt.Sprintf(`%s://%s`, gsvc.Schema, service.GetKey()),
|
|
grpcx.Balancer.WithRandom(),
|
|
grpc.WithTransportCredentials(insecure.NewCredentials()),
|
|
)
|
|
if err != nil {
|
|
g.Log().Fatalf(ctx, "did not connect: %v", err)
|
|
}
|
|
defer conn.Close()
|
|
|
|
// Send requests.
|
|
client := pb.NewGreeterClient(conn)
|
|
for i := 0; i < 10; i++ {
|
|
res, err := client.SayHello(ctx, &pb.HelloRequest{Name: `GoFrame`})
|
|
if err != nil {
|
|
g.Log().Fatalf(ctx, "could not greet: %+v", err)
|
|
}
|
|
g.Log().Printf(ctx, "Greeting: %s", res.Message)
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|