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
Hey everyone, I'm building an GRPC API like this:
service MyService { rpc sendMessageStream(stream MyRequest) returns(MyResult){}; } message MyRequest { optional String user_id = 1; optional String message = 2; }
If client invokes the GRPC API but never invokes the onCompleted method,will it occupy server-side memory resources?
The server is implemented in Java, and the client may be python, Java or C++
The dependency versions introduced by the server are as follows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey everyone,
I'm building an GRPC API like this:
If client invokes the GRPC API but never invokes the onCompleted method,will it occupy server-side memory resources?
The server is implemented in Java, and the client may be python, Java or C++
The dependency versions introduced by the server are as follows
The text was updated successfully, but these errors were encountered: