We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there support for RPC syntax? For instance:
// The greeter service definition. service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (HelloReply) {} } // The request message containing the user's name. message HelloRequest { string name = 1; } // The response message containing the greetings message HelloReply { string message = 1; }
I cannot see Greeter service in generated code.
Greeter
The text was updated successfully, but these errors were encountered:
There's no RPC support unfortunately. It's not really in the scope of the project since I don't see RPC being useful in an embedded context.
Sorry, something went wrong.
What's your usecase?
No branches or pull requests
Is there support for RPC syntax? For instance:
I cannot see
Greeter
service in generated code.The text was updated successfully, but these errors were encountered: