grpc-dart
grpc-dart copied to clipboard
Support for Server Reflection
Is it currently possible to use server reflection (https://github.com/grpc/grpc/blob/master/doc/command_line_tool.md) with grpc-dart?
@mit-mit Is there any new update? Grpc is very important and add support for this feature.
There are no plans to support server reflection at this time. PRs are welcome though
There are no plans to support server reflection at this time
@mraleph it has been two years. Is this still the case? Any reason why server reflection would not be supported for grpc-dart?
@walsha2 still no plans to support this. main reason is that we don't have engineering resources for ongoing development of this library.
I am actively working on the client-side implementation of this. The server side is much simpler once the client-side implementation is complete. Not only because dart tests would now be possible, but also because we can use a lot of the same generated code on the server side.
Edit: planning on taking some direction from the existing Go support for reflection: https://github.com/grpc/grpc-go/tree/master/reflection
Is there any development on this @cosmotek?