rclone/vendor/google.golang.org/grpc/reflection
2017-05-11 15:39:54 +01:00
..
grpc_reflection_v1alpha Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
grpc_testing Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
README.md Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
serverreflection_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
serverreflection.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00

Reflection

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)