tangs b030ce89ca openbilibili | il y a 5 ans | |
---|---|---|
.. | ||
grpc_reflection_v1alpha | il y a 5 ans | |
grpc_testing | il y a 5 ans | |
grpc_testingv3 | il y a 5 ans | |
BUILD.bazel.in | il y a 5 ans | |
README.md | il y a 5 ans | |
serverreflection.go | il y a 5 ans | |
serverreflection_test.go | il y a 5 ans |
Package reflection implements server reflection service.
The service implemented is defined in: https://github.com/grpc/grpc/blob/master/src/proto/grpc/reflection/v1alpha/reflection.proto.
To register server reflection on a gRPC server:
import "google.golang.org/grpc/reflection"
s := grpc.NewServer()
pb.RegisterYourOwnServer(s, &server{})
// Register reflection service on gRPC server.
reflection.Register(s)
s.Serve(lis)