tangs b030ce89ca openbilibili | %!s(int64=5) %!d(string=hai) anos | |
---|---|---|
.. | ||
grpc_reflection_v1alpha | %!s(int64=5) %!d(string=hai) anos | |
grpc_testing | %!s(int64=5) %!d(string=hai) anos | |
grpc_testingv3 | %!s(int64=5) %!d(string=hai) anos | |
BUILD.bazel.in | %!s(int64=5) %!d(string=hai) anos | |
README.md | %!s(int64=5) %!d(string=hai) anos | |
serverreflection.go | %!s(int64=5) %!d(string=hai) anos | |
serverreflection_test.go | %!s(int64=5) %!d(string=hai) anos |
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)