gRPC NodeJS如何获取所有方法的列表

时间:2017-10-26 12:31:20

标签: javascript node.js grpc

我想获取gRPC中服务器的所有方法(gPRC方法名称)的列表。我没有在NodeJS gRPC引用中找到方法或属性来获取gRPC方法列表 - https://grpc.io/grpc/node/grpc.Server.html。我怎样才能做到这一点?感谢)

1 个答案:

答案 0 :(得分:0)

const Service = grpc.load(protoPath).examplePackage.exampleService;
// your methods:
const methods = Object.keys(Service.prototype);

我从here

获得了解决方案